/external/clang/test/Modules/Inputs/ |
H A D | elaborated-type-structs.h | 2 struct S2 { int x; }; struct
|
H A D | redecl-merge-left.h | 19 struct S2 { struct 24 void consume_S2(struct S2*);
|
/external/llvm/unittests/ADT/ |
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/SemaCXX/ |
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 | 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 | function-extern-c.cpp | 22 struct S2 { struct 32 extern "C" S2 f5( void );
|
H A D | new-null.cpp | 17 struct S2 { struct
|
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-dangling-field.cpp | 21 struct S2 { struct 23 S2(int i) : x(i) {} // expected-warning {{binding reference member 'x' to a temporary}} function in struct:S2
|
/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/CodeGenCXX/ |
H A D | cfi-blacklist.cpp | 12 struct S2 { struct in namespace:std 28 void s2f(std::S2 *s2) {
|
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) {
|
/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/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/Index/Inputs/ |
H A D | t1.c | 15 struct S2 { struct 22 ((struct S2 *)0)->x = 0;
|
/external/clang/test/Analysis/ |
H A D | symbol-reaper.c | 54 struct S2 { struct
|
/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() {}
|
/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/PCH/ |
H A D | check-deserializations.cpp | 19 struct S2 { struct 37 S2 *s2; 43 void test(S1*, S2*) {
|
H A D | types.h | 47 struct S2; 48 struct S2 {}; struct
|
/external/clang/test/SemaTemplate/ |
H A D | self-comparison.cpp | 14 template <int A, int B> struct S2 { struct 44 S2<1, 1> s2; s2.foo<void>();
|
/external/fdlibm/ |
H A D | k_sin.c | 30 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2 37 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6)))) 51 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */ variable 71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
|
/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...] |