/external/clang/test/PCH/ |
H A D | check-deserializations.cpp | 19 struct S2 { struct 28 S2 *s2; 34 void test(S1*, S2*) {
|
H A D | types.h | 47 struct S2; 48 struct S2 {}; struct
|
/external/clang/test/SemaCXX/ |
H A D | out-of-line-def-mismatch.cpp | 9 struct S2 { struct in namespace:N2::N1 20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} 21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} 22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} 23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}} 24 void N2::N1::S2 [all...] |
H A D | cxx11-crashes.cpp | 6 struct S2 { struct in namespace:rdar12240916 7 S2(const S2&); 8 S2(); 13 S2 y; 25 S2 y; 30 S2 y;
|
H A D | attr-aligned.cpp | 8 typedef struct __attribute__((aligned(8))) S2 { char c; } AS; struct 9 static_assert(alignof(S2) == 8, "attribute not propagated"); 10 static_assert(alignof(struct S2) == 8, "attribute ignored");
|
H A D | ptrtomember.cpp | 14 struct S2 { struct 18 int S2::*pf = &S2::bitfield; // expected-error {{address of bit-field requested}}
|
H A D | warn-unused-variables.cpp | 94 struct S2 { struct in namespace:PR11550 95 S2() { function in struct:PR11550::S2 99 S2 makeS2(); 100 void testS2(S2 a) { 101 S2 x = makeS2(); // expected-warning {{unused variable 'x'}} 102 S2 y; 103 S2 z = a; // expected-warning {{unused variable 'z'}} 144 struct S2 { struct in namespace:ctor_with_cleanups 145 S2(const S1&); 148 S2 [all...] |
/external/clang/test/CXX/class/class.nest/ |
H A D | p3.cpp | 21 struct S2 { struct in namespace:PR6107 24 struct S2::S1 { };
|
/external/clang/test/CodeGenCXX/ |
H A D | exception-spec-decay.cpp | 17 struct S2 { struct 29 S2 <int[10]> s2;
|
H A D | regparm.cpp | 19 struct S2 { struct 23 void __attribute__((regparm(3))) foo3(struct S2 a, int b); 25 void bar3(struct S2 a, int b) {
|
H A D | microsoft-uuidof.cpp | 20 struct __declspec(uuid("87654321-4321-4321-4321-ba0987654321")) S2 { }; 51 // __uuidof(S2) hasn't been used globally yet, so it's emitted when it's used 98 GUID s2_1 = __uuidof(S2); 99 GUID s2_2 = __uuidof(S2); 106 const GUID& r = __uuidof(S2); 108 const GUID* p = &__uuidof(S2);
|
/external/clang/test/Modules/Inputs/ |
H A D | redecl-merge-top.h | 15 struct S2; 16 struct S2;
|
/external/llvm/include/llvm/ADT/ |
H A D | SetOperations.h | 23 bool set_union(S1Ty &S1, const S2Ty &S2) { argument 26 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end(); 37 /// elements that are not contained in S2. 40 void set_intersect(S1Ty &S1, const S2Ty &S2) { argument 44 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2 51 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { argument 55 if (!S2.count(*SI)) // if the element is not in set2 63 void set_subtract(S1Ty &S1, const S2Ty &S2) { argument [all...] |
/external/v8/test/mjsunit/compiler/ |
H A D | dead-string-char-code-at.js | 31 var S2 = "@@string2"; variable 53 var S3 = S1 + S2; 55 assertEquals(S1, dead1(S1, S2)); 56 assertEquals(S1, dead2(S1, S2)); 57 assertEquals("11", dead3(S1, S2)); 59 assertEquals(S2, dead1(S2, 677)); 60 assertEquals(S2, dead2(S2, S3)); 61 assertEquals("11", dead3(S2, S [all...] |
H A D | dead-string-char-code-at2.js | 31 var S2 = "@@string2"; variable 53 var S3 = S1 + S2; 55 assertEquals(S1, dead1(S1, S2)); 56 assertEquals(S1, dead2(S1, S2)); 57 assertEquals("11", dead3(S1, S2)); 59 assertEquals(S2, dead1(S2, 677)); 60 assertEquals(S2, dead2(S2, S3)); 61 assertEquals("11", dead3(S2, S [all...] |
/external/llvm/unittests/ADT/ |
H A D | ImmutableSetTest.cpp | 55 ImmutableSet<int> S2 = f.add(S, 3); local 57 EXPECT_FALSE(S2.isEmpty()); 58 EXPECT_FALSE(S == S2); 59 EXPECT_TRUE(S != S2); 61 EXPECT_TRUE(S2.contains(3)); 62 EXPECT_FALSE(S2.begin() == S2.end()); 63 EXPECT_TRUE(S2.begin() != S2.end()); 73 EXPECT_FALSE(S2 83 ImmutableSet<int> S2 = f.add(f.add(f.add(S, 3), 4), 5); local 121 ImmutableSet<int> S2 = f.add(f.add(S, 4), 5); local 144 ImmutableSet<char> S2 = f.add(f.add(f.add(S, 'a'), 'e'), 'i'); local 156 ImmutableSet<char> S2 = f.add(f.add(f.add(S, 'b'), 'c'), 'd'); local 179 ImmutableSet<long> S2 = f.add(f.add(f.add(S, 0), 1), 2); local [all...] |
H A D | ImmutableMapTest.cpp | 34 ImmutableMap<int, int> S2 = f.add(f.add(f.add(S, 3, 10), 4, 11), 5, 12); local 37 EXPECT_FALSE(S2.isEmpty()); 42 EXPECT_EQ(10, *S2.lookup(3)); 43 EXPECT_EQ(11, *S2.lookup(4)); 44 EXPECT_EQ(12, *S2.lookup(5)); 46 EXPECT_EQ(5, S2.getMaxElement()->first); 47 EXPECT_EQ(3U, S2.getHeight());
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
H A D | p8.cpp | 18 struct S2 { struct 23 void S2::f(int i) {
|
/external/clang/test/Index/Inputs/ |
H A D | t1.c | 15 struct S2 { struct 22 ((struct S2 *)0)->x = 0;
|
/external/clang/test/Index/ |
H A D | annotate-tokens.cpp | 17 struct S2 { S1 *operator->(); }; struct 18 void test3(S2 s2) { 111 // CHECK: Keyword: "struct" [17:1 - 17:7] StructDecl=S2:17:8 (Definition) 112 // CHECK: Identifier: "S2" [17:8 - 17:10] StructDecl=S2:17:8 (Definition) 113 // CHECK: Punctuation: "{" [17:11 - 17:12] StructDecl=S2:17:8 (Definition) 120 // CHECK: Punctuation: ";" [17:29 - 17:30] StructDecl=S2:17:8 (Definition) 121 // CHECK: Punctuation: "}" [17:31 - 17:32] StructDecl=S2:17:8 (Definition) 126 // CHECK: Identifier: "S2" [18:12 - 18:14] TypeRef=struct S2 [all...] |
/external/clang/test/OpenMP/ |
H A D | parallel_firstprivate_messages.cpp | 12 class S2 { class 15 S2():a(0) { } function in class:S2 16 S2(const S2 &s2):a(s2.a) { } function in class:S2 20 const float S2::S2sc = 0; 21 const S2 b; 22 const S2 ba[5]; 78 #pragma omp parallel firstprivate(S2::S2s) 79 #pragma omp parallel firstprivate(S2::S2sc)
|
H A D | task_firstprivate_messages.cpp | 12 class S2 { class 16 S2() : a(0) {} function in class:S2 17 S2(const S2 &s2) : a(s2.a) {} function in class:S2 21 const float S2::S2sc = 0; 22 const S2 b; 23 const S2 ba[5]; 82 #pragma omp task firstprivate(S2::S2s) 83 #pragma omp task firstprivate(S2::S2sc)
|
H A D | parallel_copyin_messages.cpp | 11 class S2 { class 14 S2():a(0) { } function in class:S2 15 S2 & operator =(S2 &s2) { return *this; } 51 S2 k;
|
/external/guava/guava-tests/benchmark/com/google/common/base/ |
H A D | ObjectsBenchmark.java | 34 private static final String S2 = "44 one million"; field in class:ObjectsBenchmark 51 dummy += Objects.hashCode(S0, S1, S2); 59 dummy += Objects.hashCode(S0, S1, S2, S3); 67 dummy += Objects.hashCode(S0, S1, S2, S3, S4); 75 dummy += Objects.hashCode(I2, S1, D1, S2, I0);
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
H A D | p3.cpp | 60 struct S2 { struct in struct:PR7979::S 68 template void S<int>::S2::h(); 73 template <typename T> void S<T>::S2::h() {}
|