/external/llvm/unittests/ADT/ |
D | ImmutableSetTest.cpp | 65 ImmutableSet<int> S3 = f.add(S, 2); in TEST_F() local 67 EXPECT_FALSE(S3.isEmpty()); in TEST_F() 68 EXPECT_FALSE(S == S3); in TEST_F() 69 EXPECT_TRUE(S != S3); in TEST_F() 71 EXPECT_TRUE(S3.contains(2)); in TEST_F() 73 EXPECT_FALSE(S2 == S3); in TEST_F() 74 EXPECT_TRUE(S2 != S3); in TEST_F() 76 EXPECT_FALSE(S3.contains(3)); in TEST_F() 84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); in TEST_F() local 89 EXPECT_FALSE(S3.isEmpty()); in TEST_F() [all …]
|
/external/v8/test/mjsunit/compiler/ |
D | dead-string-char-code-at2.js | 53 var S3 = S1 + S2; 60 assertEquals(S2, dead2(S2, S3)); 61 assertEquals("11", dead3(S2, S3)); 63 assertEquals(S3, dead1(S3, 399)); 64 assertEquals(S3, dead2(S3, "false")); 67 assertEquals(S3, dead1(S3, 0)); 68 assertEquals(S3, dead2(S3, S1)); 69 assertEquals("11", dead3(S3, 0)); 72 assertEquals("true", dead2("true", S3));
|
D | dead-string-char-code-at.js | 53 var S3 = S1 + S2; 60 assertEquals(S2, dead2(S2, S3)); 61 assertEquals("11", dead3(S2, S3)); 63 assertEquals(S3, dead1(S3, 399)); 64 assertEquals(S3, dead2(S3, "false")); 67 assertEquals(S3, dead1(S3, 0)); 68 assertEquals(S3, dead2(S3, S1)); 69 assertEquals("11", dead3(S3, 0)); 72 assertEquals("true", dead2("true", S3));
|
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/ |
D | p2.cpp | 29 struct S3 { struct 30 S3() = default; 31 S3(const S3&) = default; 32 S3(S3&&) = default; 33 constexpr S3(int n) : n(n) {} in S3() function 36 constexpr S3 s3a = S3(0); argument 37 constexpr S3 s3b = s3a; 38 constexpr S3 s3c = S3(); 39 constexpr S3 s3d; // expected-error {{default initialization of an object of const type 'const S3' …
|
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/ |
D | sema.cpp | 180 struct S3 { struct 181 virtual ~S3() throw(); 182 S3() throw(); 183 explicit S3(int); 184 S3(const S2&); 189 P(dynamic_cast<S3&>(f2<T&>())); in late2() 192 void operator +(const S1&, const S3&); 195 late<S3, false>(); in tlate() 196 late2<S3>(); in tlate()
|
/external/clang/test/OpenMP/ |
D | parallel_reduction_messages.cpp | 27 class S3 { class 32 S3() : a(0) {} in S3() function in S3 33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3 34 S3 operator+(const S3 &arg1) { return arg1; } in operator +() 36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +() 37 S3 c; // expected-note 2 {{'c' defined here}} 38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}} 70 S3 h, k; 80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain() 175 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
|
D | parallel_firstprivate_messages.cpp | 23 class S3 { class 26 S3():a(0) { } in S3() function in S3 27 S3(const S3 &s3):a(s3.a) { } in S3() function in S3 29 const S3 c; 30 const S3 ca[5]; 47 S3 h;
|
D | parallel_shared_messages.cpp | 20 class S3 { class 23 S3():a(0) { } in S3() function in S3 24 S3(S3 &s3):a(s3.a) { } in S3() function in S3 26 const S3 c; 27 const S3 ca[5]; 44 S3 h;
|
D | task_firstprivate_messages.cpp | 24 class S3 { class 28 S3() : a(0) {} in S3() function in S3 29 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3 31 const S3 c; 32 const S3 ca[5]; 51 S3 h;
|
D | threadprivate_codegen.cpp | 67 struct S3 { struct 70 S3() in S3() argument 73 S3(int a) in S3() function 76 S3(const S3 &s) { in S3() function 79 ~S3() { in ~S3() argument 187 static S3 s;
|
D | task_shared_messages.cpp | 21 class S3 { class 25 S3() : a(0) {} in S3() function in S3 26 S3(S3 &s3) : a(s3.a) {} in S3() function in S3 28 const S3 c; 29 const S3 ca[5]; 48 S3 h;
|
D | parallel_sections_reduction_messages.cpp | 27 class S3 { class 32 S3() : a(0) {} in S3() function in S3 33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3 34 S3 operator+(const S3 &arg1) { return arg1; } in operator +() 36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +() 37 S3 c; // expected-note 2 {{'c' defined here}} 38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}} 70 S3 h, k; 80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain() 233 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
|
D | parallel_sections_lastprivate_messages.cpp | 25 class S3 { class 27 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}} 30 S3() : a(0) {} in S3() function in S3 31 S3(S3 &s3) : a(s3.a) {} in S3() function in S3 33 const S3 c; // expected-note {{global variable is predetermined as shared}} 34 const S3 ca[5]; // expected-note {{global variable is predetermined as shared}} 61 S3 h; 158 S3 m; in main()
|
D | parallel_sections_shared_messages.cpp | 21 class S3 { class 25 S3() : a(0) {} in S3() function in S3 26 S3(S3 &s3) : a(s3.a) {} in S3() function in S3 28 const S3 c; 29 const S3 ca[5]; 48 S3 h;
|
D | sections_lastprivate_messages.cpp | 25 class S3 { class 27 S3 &operator=(const S3 &s3); // expected-note 2 {{implicitly declared private here}} 30 S3() : a(0) {} in S3() function in S3 31 S3(S3 &s3) : a(s3.a) {} in S3() function in S3 33 const S3 c; // expected-note {{global variable is predetermined as shared}} 34 const S3 ca[5]; // expected-note {{global variable is predetermined as shared}} 61 S3 h; 172 S3 m; in main()
|
D | distribute_firstprivate_messages.cpp | 24 class S3 { class 26 S3 &operator=(const S3 &s3); 29 …S3() : a(0) {} // expected-note {{candidate constructor not viable: requires 0 arguments, but 1 wa… in S3() function in S3 30 …S3(S3 &s3) : a(s3.a) {} // expected-note {{candidate constructor not viable: 1st argument ('const … in S3() function in S3 32 const S3 c; 33 const S3 ca[5]; 55 S3 h;
|
D | teams_shared_messages.cpp | 20 class S3 { class 23 S3():a(0) { } in S3() function in S3 24 S3(S3 &s3):a(s3.a) { } in S3() function in S3 26 const S3 c; 27 const S3 ca[5]; 44 S3 h;
|
D | teams_firstprivate_messages.cpp | 24 class S3 { class 28 S3() : a(0) {} in S3() function in S3 29 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3 31 const S3 c; 32 const S3 ca[5]; 49 S3 h;
|
D | sections_reduction_messages.cpp | 27 class S3 { class 32 S3() : a(0) {} in S3() function in S3 33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3 34 S3 operator+(const S3 &arg1) { return arg1; } in operator +() 36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +() 37 S3 c; // expected-note 2 {{'c' defined here}} 38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}} 70 S3 h, k; 80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain() 260 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
|
D | teams_reduction_messages.cpp | 27 class S3 { class 32 S3() : a(0) {} in S3() function in S3 33 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3 34 S3 operator+(const S3 &arg1) { return arg1; } in operator +() 36 int operator+(const S3 &arg1, const S3 &arg2) { return 5; } in operator +() 37 S3 c; // expected-note 2 {{'c' defined here}} 38 const S3 ca[5]; // expected-note 2 {{'ca' defined here}} 70 S3 h, k; 80 S3 &p = k; // expected-note 2 {{'p' defined here}} in tmain() 208 S3 &p = k; // expected-note 2 {{'p' defined here}} in main()
|
D | single_firstprivate_messages.cpp | 24 class S3 { class 26 S3 &operator=(const S3 &s3); 29 S3() : a(0) {} in S3() function in S3 30 S3(const S3 &s3) : a(s3.a) {} in S3() function in S3 32 const S3 c; 33 const S3 ca[5]; 60 S3 h; 148 S3 m; in main()
|
/external/clang/test/CodeGenCXX/ |
D | mangle-98.cpp | 3 template <bool B> struct S3 {}; struct 6 void f(S3<true>) {} in f() 9 void f(S3<false>) {} in f() 12 void f2(S3<100>) {} in f2()
|
/external/clang/test/SemaCXX/ |
D | warn-unused-variables.cpp | 107 struct S3 { struct 110 S3 makeS3(); 111 void testS3(S3 a) { in testS3() 112 S3 x = makeS3(); // expected-warning {{unused variable 'x'}} in testS3() 113 S3 y; in testS3() 114 S3 z = a; // expected-warning {{unused variable 'z'}} in testS3()
|
D | attr-aligned.cpp | 12 typedef struct __attribute__((aligned(4))) S3 { struct 14 } S3 __attribute__((aligned(8))); typedef 15 static_assert(alignof(S3) == 8, "attribute ignored"); 16 static_assert(alignof(struct S3) == 4, "attribute clobbered");
|
/external/autotest/client/site_tests/power_Standby/ |
D | control | 14 This test measures the power draw during standby (S3). 16 Test uses RTC wake to transistion from S3 to S0 every sample_hours for a total 17 standby time of test_hours. The S3->S0 transistions are added to 19 2. Guarantee that S3 was maintained (no external/false wake) 20 3. Create S3->S0->S3 transistions which more closely model user's interaction.
|