Searched refs:S2 (Results 1 - 25 of 338) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/
H A DMethodPoolString2.h2 @interface S2
H A Delaborated-type-structs.h2 struct S2 { int x; }; struct
H A Dredecl-merge-top.h15 struct S2;
16 struct S2;
/external/clang/test/SemaCXX/
H A Dout-of-line-def-mismatch.cpp9 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 Dcxx11-crashes.cpp6 struct S2 { struct in namespace:rdar12240916
7 S2(const S2&);
8 S2();
13 S2 y;
25 S2 y;
30 S2 y;
H A Dattr-aligned.cpp8 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 Dptrtomember.cpp14 struct S2 { struct
18 int S2::*pf = &S2::bitfield; // expected-error {{address of bit-field requested}}
H A Dwarn-unused-variables.cpp94 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/dcl.dcl/dcl.attr/dcl.attr.unused/
H A Dp1.cpp4 struct [[maybe_unused maybe_unused]] S2 {}; // expected-error {{attribute 'maybe_unused' cannot appear multiple times in an attribute specifier}} struct
/external/clang/test/CXX/class/class.nest/
H A Dp3.cpp21 struct S2 { struct in namespace:PR6107
24 struct S2::S1 { };
/external/clang/test/CodeGenCXX/
H A Dcfi-blacklist.cpp11 struct S2 { struct in namespace:std
27 void s2f(std::S2 *s2) {
H A Dexception-spec-decay.cpp17 struct S2 { struct
29 S2 <int[10]> s2;
H A Ddebug-info-nodebug.cpp33 struct S2 { struct
37 int S2::static_member = 5;
39 S2 junk;
40 func1(S2::static_const_member);
/external/clang/test/PCH/
H A Dpragma-pointers_to_members.cpp23 struct S2;
31 static_assert(sizeof(int S2::*) == 4, "");
H A Dcheck-deserializations.cpp19 struct S2 { struct
37 S2 *s2;
43 void test(S1*, S2*) {
H A Dtypes.h47 struct S2;
48 struct S2 {}; struct
/external/llvm/include/llvm/ADT/
H A DSetOperations.h23 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/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DSetOperations.h23 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/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.nodiscard/
H A Dp1.cpp4 struct [[nodiscard nodiscard]] S2 {}; // expected-error {{attribute 'nodiscard' cannot appear multiple times in an attribute specifier}} struct
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp55 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 DImmutableMapTest.cpp34 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/swiftshader/third_party/LLVM/unittests/ADT/
H A DImmutableSetTest.cpp55 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...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
H A Dp8.cpp18 struct S2 { struct
23 void S2::f(int i) {
/external/clang/test/Index/Inputs/
H A Dt1.c15 struct S2 { struct
22 ((struct S2 *)0)->x = 0;
/external/clang/test/CodeGen/
H A Dmalign-double.cpp7 /* Structs S1, S2, S3, S4, and union U5 are taken from Intel, "IA-64
24 struct S2{ struct
31 unsigned S2_align = __alignof(struct S2);
32 unsigned S2_size = sizeof(struct S2);
36 unsigned S2_c_offset = (unsigned) &((struct S2*) 0)->c;
37 unsigned S2_d_offset = (unsigned) &((struct S2*) 0)->d;
38 unsigned S2_s_offset = (unsigned) &((struct S2*) 0)->s;
39 unsigned S2_n_offset = (unsigned) &((struct S2*) 0)->n;

Completed in 500 milliseconds

1234567891011>>