Home
last modified time | relevance | path

Searched defs:TestObject (Results 1 – 25 of 747) sorted by relevance

12345678910>>...30

/dports/devel/eastl/EASTL-3.13.06/test/source/
H A DEASTLTest.h344 struct TestObject struct
346 int mX; // Value for the TestObject. argument
348 …ject, equal to its creation number. This value is not coped from other TestObjects during any oper… argument
350 static int64_t sTOCount; // Count of all current existing TestObjects. argument
361 explicit TestObject(int x = 0, bool bThrowOnCopy = false) argument
371 TestObject(int x0, int x1, int x2, bool bThrowOnCopy = false) argument
380 TestObject(const TestObject& testObject) in TestObject() argument
398 TestObject(TestObject&& testObject) in TestObject() function
455 ~TestObject() in ~TestObject() argument
478 …static bool IsClear() // Returns true if there are no existing TestObjects and the sanity checks r… in IsClear() argument
/dports/x11/waybar/Waybar-0.9.12/test/
H A DSafeSignal.cpp65 struct TestObject { struct
70 TestObject(const T& v) : value(v){}; in TestObject() argument
73 TestObject(const TestObject& other) in TestObject() argument
76 TestObject(TestObject&& other) noexcept in TestObject() function
81 TestObject& operator=(const TestObject& other) { in operator =() argument
88 TestObject& operator=(TestObject&& other) noexcept { in operator =() argument
106 SafeSignal<TestObject<int>> test_signal; argument
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/go-memdb/
H A Dindex_test.go14 ID string
15 Foo string
16 Fu *string
18 Bar int
19 Baz string
20 Bam *bool
21 Empty string
26 Int int
27 Int8 int8
28 Int16 int16
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/testing/
H A DUnitTestToken.cxx22 struct TestObject struct
24 vtkm::cont::Token::ReferenceCount* TokenCount;
25 std::mutex* Mutex;
26 std::condition_variable* ConditionVariable;
27 vtkm::Id* ReferenceCount;
29 TestObject() in TestObject() argument
37 TestObject(const TestObject& src) in TestObject() function
47 ~TestObject() in ~TestObject()
61 void Attach(vtkm::cont::Token& token) in Attach()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/wabt-sys-0.7.1/wabt/src/
H A Dtest-circular-array.cc27 struct TestObject { struct
28 static int construct_count;
29 static int destruct_count;
31 TestObject(int data = 0, int data2 = 0) : data(data), data2(data2) { in TestObject() function
35 TestObject(const TestObject& other) { in TestObject() argument
46 TestObject(TestObject&& other) { *this = std::move(other); } in TestObject() function
48 TestObject& operator=(TestObject&& other) { in operator =()
55 ~TestObject() { in ~TestObject()
61 int data = 0;
62 int data2 = 0;
[all …]
/dports/www/firefox/firefox-99.0/third_party/wasm2c/src/
H A Dtest-circular-array.cc27 struct TestObject { struct
28 static int construct_count;
29 static int destruct_count;
31 TestObject(int data = 0, int data2 = 0) : data(data), data2(data2) { in TestObject() function
35 TestObject(const TestObject& other) { in TestObject() argument
46 TestObject(TestObject&& other) { *this = std::move(other); } in TestObject() argument
48 TestObject& operator=(TestObject&& other) { in operator =()
55 ~TestObject() { in ~TestObject()
61 int data = 0;
62 int data2 = 0;
[all …]
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/common/test/
H A DCircularDequeTest.cpp40 struct TestObject { struct
41 TestObject() : val(0) {} in TestObject() function
42 TestObject(int v, const std::string& w) : val(v), words(w) {} in TestObject() function
45 TestObject(const TestObject& other) in TestObject() argument
50 TestObject(TestObject&& other) noexcept in TestObject() argument
71 bool moved{false};
72 mutable bool copied{false};
73 bool fromMoveSource{false};
74 bool fromCopySource{false};
75 int val;
[all …]
/dports/x11/kf5-kdelibs4support/kdelibs4support-5.89.0/src/kdecore/
H A Dqtest_kde.h71 #define QTEST_KDEMAIN_WITH_COMPONENTNAME(TestObject, flags, componentName) \ argument
107 #define QTEST_KDEMAIN(TestObject, flags) QTEST_KDEMAIN_WITH_COMPONENTNAME(TestObject, flags, "qttes… argument
122 #define QTEST_KDEMAIN_CORE_WITH_COMPONENTNAME(TestObject, componentName) \ argument
156 #define QTEST_KDEMAIN_CORE(TestObject) QTEST_KDEMAIN_CORE_WITH_COMPONENTNAME(TestObject, "qttest") argument
/dports/devel/cxxtools/cxxtools-2.2.1/test/
H A Djsonserializer-test.cpp35 struct TestObject struct
37 int intValue;
38 std::string stringValue;
39 double doubleValue;
40 bool boolValue;
41 bool nullValue;
43 TestObject() in TestObject() function
H A Djsondeserializer-test.cpp38 struct TestObject struct
40 int intValue;
41 std::string stringValue;
42 double doubleValue;
43 bool boolValue;
44 bool nullValue;
46 TestObject() in TestObject() argument
H A Dcsvserializer-test.cpp38 struct TestObject struct
40 int intValue;
41 std::string stringValue;
42 double doubleValue;
43 bool boolValue;
/dports/devel/git-lfs/git-lfs-3.0.2/t/git-lfs-test-server-api/
H A Dtestupload.go13 func uploadAllMissing(manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) error {
41 func uploadAllExists(manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) error {
68 func uploadMixed(manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) error {
112 func uploadEdgeCases(manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) error {
H A Dmain.go23 type TestObject struct { struct
24 Oid string
25 Size int64
232 func saveTestOids(filename string, objs []TestObject) {
245 func runTests(manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) bool {
257 func runTest(t ServerTest, manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) error {
287 func callBatchApi(manifest *tq.Manifest, dir tq.Direction, objs []TestObject) ([]*tq.Transfer, erro…
302 func interleaveTestData(slice1, slice2 []TestObject) []TestObject {
H A Dtestdownload.go13 func downloadAllExist(manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) error {
40 func downloadAllMissing(manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) error {
72 func downloadMixed(manifest *tq.Manifest, oidsExist, oidsMissing []TestObject) error {
/dports/devel/newtonsoft-json/Newtonsoft.Json-9.0.1/Src/Newtonsoft.Json.Tests/TestObjects/
H A DTestObject.cs28 public class TestObject class
30 public TestObject() in TestObject() method in Newtonsoft.Json.Tests.TestObjects.TestObject
34 public TestObject(string name, byte[] data) in TestObject() method in Newtonsoft.Json.Tests.TestObjects.TestObject
/dports/www/firefox-esr/firefox-91.8.0/gfx/2d/unittest/
H A DMain.cpp18 struct TestObject { struct
24 TestObject tests[] = { in main() argument
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/2d/unittest/
H A DMain.cpp18 struct TestObject { struct
24 TestObject tests[] = { in main() argument
/dports/www/firefox/firefox-99.0/gfx/2d/unittest/
H A DMain.cpp18 struct TestObject { struct
24 TestObject tests[] = { in main() argument
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/2d/unittest/
H A DMain.cpp18 struct TestObject { struct
24 TestObject tests[] = { in main() argument
/dports/x11-toolkits/ctk/CTK-2018-10-29/Libs/Testing/
H A DctkTest.h30 #define CTK_TEST_NOOP_MAIN(TestObject) \ argument
40 #define CTK_TEST_MAIN(TestObject) \ argument
52 #define CTK_TEST_MAIN(TestObject) \ argument
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/2d/unittest/
H A DMain.cpp18 struct TestObject { struct
26 TestObject tests[] = { in main() argument
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/2d/unittest/
H A DMain.cpp17 struct TestObject { struct
28 TestObject tests[] = in main() argument
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Common/test/
H A DitkObjectStoreTest.cxx22 struct TestObject struct
31 itk::ObjectStore<TestObject>::Pointer store in itkObjectStoreTest() argument
/dports/databases/pgbackrest/pgbackrest-release-2.35/test/src/module/common/
H A DtypeObjectTest.c9 typedef struct TestObject struct
12 } TestObject; argument
/dports/devel/capnproto080/capnproto-0.8.0/c++/src/kj/
H A Darena-test.c++30 struct TestObject { struct
31 TestObject() { in TestObject() function
36 TestObject(const TestObject& other) { in TestObject() function
41 ~TestObject() noexcept(false) { in ~TestObject()
51 int index;
53 static int count;
54 static int copiedCount;
55 static int throwAt;

12345678910>>...30