Home
last modified time | relevance | path

Searched refs:Test1 (Results 1 – 25 of 338) sorted by relevance

12345678910>>...14

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
DConfigMergerTest.java42 configFor(Test1.class, "withoutAnnotation"), in whenClassHasConfigAnnotation_getConfig_shouldMergeClassAndMethodConfig()
50 new Class[] {Test1.class}, in whenClassHasConfigAnnotation_getConfig_shouldMergeClassAndMethodConfig()
55 configFor(Test1.class, "withDefaultsAnnotation"), in whenClassHasConfigAnnotation_getConfig_shouldMergeClassAndMethodConfig()
63 new Class[] {Test1.class}, in whenClassHasConfigAnnotation_getConfig_shouldMergeClassAndMethodConfig()
68 configFor(Test1.class, "withOverrideAnnotation"), in whenClassHasConfigAnnotation_getConfig_shouldMergeClassAndMethodConfig()
76 new Class[] {Test1.class, Test2.class}, in whenClassHasConfigAnnotation_getConfig_shouldMergeClassAndMethodConfig()
118 new Class[] {Test1.class}, in whenClassDoesntHaveConfigAnnotation_getConfig_shouldUseMethodConfig()
134 new Class[] {Test1.class, Test1.class}, in whenClassDoesntHaveConfigAnnotation_getConfig_shouldMergeParentClassAndMethodConfig()
147 new Class[] {Test1.class, Test1.class}, in whenClassDoesntHaveConfigAnnotation_getConfig_shouldMergeParentClassAndMethodConfig()
160 new Class[] {Test1.class, Test1.class, Test5.class}, in whenClassDoesntHaveConfigAnnotation_getConfig_shouldMergeParentClassAndMethodConfig()
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/
Dhlsl.self_cast.frag2 struct Test1 { float f; };
12 Test1 a;
13 Test1 b = (Test1)a;
22 Test1 a[2];
23 Test1 b[2] = (Test1[2])a;
/external/deqp-deps/glslang/Test/
Dhlsl.self_cast.frag2 struct Test1 { float f; };
12 Test1 a;
13 Test1 b = (Test1)a;
22 Test1 a[2];
23 Test1 b[2] = (Test1[2])a;
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dbugprone-forwarding-reference-overload.cpp20 class Test1 { class
22 template <typename T> Test1(T &&n);
28 template <typename T> Test1(T &&n, int i = 5, ...);
35 Test1(T &&n);
42 Test1(T &&n, typename foo::enable_if<long>::type i = 5, ...);
48 Test1(const Test1 &other) {} in Test1() function in Test1
49 Test1(Test1 &other) {} in Test1() function in Test1
50 Test1(Test1 &&other) {} in Test1() function in Test1
/external/llvm-project/clang/test/CodeGenCXX/
Daix-static-init-temp-spec-and-inline-var.cpp10 struct Test1 { struct
11 Test1(int) {} in Test1() function
12 ~Test1() {} in ~Test1() argument
15 Test1 t0 = 2;
18 Test1 t1 = 2;
20 inline Test1 t2 = 2;
Dconstructor-direct-call.cpp4 class Test1 { class
10 Test1 var; in f1()
11 var.Test1::Test1(); in f1()
15 var.Test1::Test1(var); in f1()
Dms-property.cpp9 class Test1 { class
15 Test1(int x) : x_(x) {} in Test1() function in Test1
18 static Test1 *GetTest1() { return new Test1(10); } in GetTest1()
36 char GetY(char i, Test1 j) { return i+j.get_x(); } in GetY()
43 Test1 t(i); in foo()
53 Test1 t(argc); in main()
102 return Test1::GetTest1()->X; in main()
Dbitfield-layout.cpp7 union Test1 { union
11 Test1 t1;
49 Test1 u1; in test_assign()
77 Test1 u1 = {1}; in test_init()
/external/clang/test/CodeGenCXX/
Dconstructor-direct-call.cpp3 class Test1 { class
9 Test1 var; in f1()
10 var.Test1::Test1(); in f1()
13 var.Test1::Test1(var); in f1()
Dms-property.cpp9 class Test1 { class
15 Test1(int x) : x_(x) {} in Test1() function in Test1
18 static Test1 *GetTest1() { return new Test1(10); } in GetTest1()
36 char GetY(char i, Test1 j) { return i+j.get_x(); } in GetY()
43 Test1 t(i); in foo()
53 Test1 t(argc); in main()
102 return Test1::GetTest1()->X; in main()
/external/libcups/test/
D4.3-job-ops.test12 NAME "Print PostScript Job with bad job-sheets value to Test1"
16 RESOURCE /printers/Test1
22 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
33 NAME "Print PostScript Job to Test1"
37 RESOURCE /printers/Test1
43 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
68 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
137 NAME "Print Text Job to Test1"
141 RESOURCE /printers/Test1
147 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
[all …]
D4.2-cups-printer-ops.test12 NAME "Add Printer Test1"
22 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
35 NAME "Verify Printer Test1 Added"
45 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
56 NAME "Delete Printer Test1"
66 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
77 NAME "Verify Printer Test1 Deleted"
87 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
195 NAME "Re-Add Printer Test1"
205 ATTR uri printer-uri $method://$hostname:$port/printers/Test1
[all …]
/external/llvm-project/clang/test/AST/
Dast-dump-funcs-json.cpp4 void Test1();
18 void Test1();
20 void U::Test1() {} // parent in Test1() function in U
22 void Test1();
41 Test1(); // Causes this to be marked 'used' in main()
/external/llvm-project/clang/test/Analysis/
DanalyzeOneFunction.m1 // RUN: %clang_analyze_cc1 -analyze-function="-[Test1 myMethodWithY:withX:]" -analyzer-checker=core…
25 @interface Test1 : NSObject { interface
34 @implementation Test1 implementation
39 Test1 *cell = [[[Test1 alloc] init] autorelease];
48 Test1 *cell = [[[Test1 alloc] init] autorelease];
/external/llvm-project/llvm/test/TableGen/
Dinterleave.td16 // CHECK: Test1 = "";
23 string Test1 = !interleave(EmptyList, "/");
31 // CHECK: Test1 = "01234567";
36 string Test1 = !interleave(IntList, "");
42 // CHECK: Test1 = "271";
47 string Test1 = !interleave(BitsList, "");
53 // CHECK: Test1 = "01101";
58 string Test1 = !interleave(BitList, "");
/external/flatbuffers/tests/MyGame/Example/
DVec3.cs25 public double Test1 { get { return __p.bb.GetDouble(__p.bb_pos + 16); } } property
31 …> CreateVec3(FlatBufferBuilder builder, float X, float Y, float Z, double Test1, MyGame.Example.Co… in CreateVec3()
40 builder.PutDouble(Test1); in CreateVec3()
56 _o.Test1 = this.Test1; in UnPackTo()
67 _o.Test1, in Pack()
83 public double Test1 { get; set; } property in MyGame.Example.Vec3T
93 this.Test1 = 0.0; in Vec3T()
/external/llvm-project/clang/test/SemaCXX/
Dms-property.cpp9 class Test1 { class
14 Test1(int x) : x_(x) {} in Test1() function in Test1
17 static Test1 *GetTest1() { return new Test1(10); } in GetTest1()
58 return Test1::GetTest1()->X; in main()
/external/clang/test/SemaCXX/
Dms-property.cpp9 class Test1 { class
14 Test1(int x) : x_(x) {} in Test1() function in Test1
17 static Test1 *GetTest1() { return new Test1(10); } in GetTest1()
58 return Test1::GetTest1()->X; in main()
/external/clang/test/Analysis/
DanalyzeOneFunction.m25 @interface Test1 : NSObject { interface
34 @implementation Test1 implementation
39 Test1 *cell = [[[Test1 alloc] init] autorelease];
48 Test1 *cell = [[[Test1 alloc] init] autorelease];
/external/llvm-project/clang/test/CXX/class.access/
Dp4.cpp313 class Test1 { A a; }; // expected-error {{private member}} class
315 Test1 a; in test1()
316 a = Test1(); // expected-note{{implicit copy}} in test1()
325 …class Test1 { A a; }; // expected-note {{because field 'a' has an inaccessible copy assignment ope… class
327 Test1 a; in test1()
328 a = Test1(); // expected-error {{copy assignment operator is implicitly deleted}} in test1()
350 class Test1 { A a; }; // expected-error {{field of type 'test6::A' has private copy constructor}} class
351 void test1(const Test1 &t) { in test1()
352 Test1 a = t; // expected-note{{implicit copy}} in test1()
360 class Test1 { A a; }; // expected-note {{field 'a' has an inaccessible copy constructor}} class
[all …]
/external/libchrome/base/
Doptional_unittest.cc401 class Test1 { in TEST() class
403 explicit Test1(int foo) : foo_(foo) {} in TEST() function in base::TEST::Test1
415 explicit Test2(Test1&& other) : bar_(other.foo()) {} in TEST()
423 Optional<Test1> first(in_place, 42); in TEST()
814 struct Test1 { in TEST() struct
834 explicit Test2(const Test1& test1) in TEST()
836 explicit Test2(Test1&& test1) : state(State::MOVE_CONSTRUCTED_FROM_TEST1) { in TEST()
837 test1.state = Test1::State::MOVED; in TEST()
839 Test2& operator=(const Test1& test1) { in TEST()
843 Test2& operator=(Test1&& test1) { in TEST()
[all …]
/external/perfetto/src/base/
Doptional_unittest.cc420 class Test1 { in TEST() class
422 explicit Test1(int foo) : foo_(foo) {} in TEST() function in perfetto::base::TEST::Test1
434 explicit Test2(Test1&& other) : bar_(other.foo()) {} in TEST()
442 Optional<Test1> first(in_place, 42); in TEST()
832 struct Test1 { in TEST() struct
852 explicit Test2(const Test1&) : state(State::COPY_CONSTRUCTED_FROM_TEST1) {} in TEST()
853 explicit Test2(Test1&& test1) : state(State::MOVE_CONSTRUCTED_FROM_TEST1) { in TEST()
854 test1.state = Test1::State::MOVED; in TEST()
856 Test2& operator=(const Test1&) { in TEST()
860 Test2& operator=(Test1&& test1) { in TEST()
[all …]
/external/googletest/googletest/test/
Dgoogletest-failfast-unittest_.cc50 TEST_F(HasFixtureTest, Test1) { FAIL() << "Expected failure."; } in TEST_F() argument
62 TEST(HasSimpleTest, Test1) { FAIL() << "Expected failure."; } in TEST() argument
86 TEST(HasDeathTest, Test1) { in TEST() argument
106 TEST(DISABLED_HasDisabledSuite, Test1) { FAIL() << "Expected failure."; } in TEST() argument
118 TEST_P(HasParametersTest, Test1) { FAIL() << "Expected failure."; } in TEST_P() argument
153 TEST(HasSkipTest, Test1) { GTEST_SKIP() << "Expected skip."; } in TEST() argument
/external/webrtc/rtc_base/
Dtype_traits.h42 struct Test1 { struct
46 static_assert(HasDataAndSize<Test1<int*, int>, int>::value, "");
47 static_assert(HasDataAndSize<Test1<int*, int>, const int>::value, "");
48 static_assert(HasDataAndSize<Test1<const int*, int>, const int>::value, "");
49 static_assert(!HasDataAndSize<Test1<const int*, int>, int>::value,
51 static_assert(!HasDataAndSize<Test1<char*, size_t>, int>::value,
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
Dp11.cpp49 class Test1 { class
66 template <typename> class Test1 { class
84 template <typename T> class Test1 { class
92 template class Test1<int>; variable

12345678910>>...14