HomeSort by relevance Sort by last modified time
    Searched refs:S2 (Results 1 - 25 of 195) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/PCH/
check-deserializations.cpp 16 struct S2 {
25 S2 *s2; variable
31 void test(S1*, S2*) {
types.h 47 struct S2;
48 struct S2 {};
  /external/clang/test/SemaCXX/
out-of-line-def-mismatch.cpp 9 struct S2 {
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::func(unsigned*, S1*) {} // expected-error {{out-of-line definition of 'func' does not match any d (…)
    [all...]
cxx11-crashes.cpp 6 struct S2 {
7 S2(const S2&);
8 S2();
13 S2 y;
25 S2 y;
30 S2 y;
attr-aligned.cpp 8 typedef struct __attribute__((aligned(8))) S2 { char c; } AS;
9 static_assert(alignof(S2) == 8, "attribute not propagated");
10 static_assert(alignof(struct S2) == 8, "attribute ignored");
ptrtomember.cpp 14 struct S2 {
18 int S2::*pf = &S2::bitfield; // expected-error {{address of bit-field requested}}
warn-unused-variables.cpp 94 struct S2 {
95 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 {
145 S2(const S1&);
148 S2 s((S1()))
    [all...]
alignof.cpp 16 struct S2 {
17 S2();
25 const int test6 = __alignof__(S2::x);
26 const int test7 = __alignof__(S2::s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
29 // 's2.x' should depend on the alignment of both x-within-S2 and
30 // s2-within-S3 and thus require 'S3' to be complete. If we start
34 S2 s2; member in struct:S3
36 static const int test8 = __alignof__(s2.x)
    [all...]
namespace.cpp 24 namespace S2 {
37 namespace S2 {
50 namespace S2 {
err_init_conversion_failed.cpp 53 template <class P> struct S2 {
58 S2<S> X = {&S::foo};
  /external/clang/test/CXX/class/class.nest/
p3.cpp 21 struct S2 {
24 struct S2::S1 { };
  /external/clang/test/Modules/Inputs/
redecl-merge-top.h 15 struct S2;
16 struct S2;
  /external/llvm/include/llvm/ADT/
SetOperations.h 23 bool set_union(S1Ty &S1, const S2Ty &S2) {
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) {
44 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2
51 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) {
55 if (!S2.count(*SI)) // if the element is not in set2
63 void set_subtract(S1Ty &S1, const S2Ty &S2) {
    [all...]
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 55 ImmutableSet<int> S2 = f.add(S, 3);
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 == S3)
    [all...]
ImmutableMapTest.cpp 34 ImmutableMap<int, int> S2 = f.add(f.add(f.add(S, 3, 10), 4, 11), 5, 12);
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/
p8.cpp 18 struct S2 {
23 void S2::f(int i) {
  /external/clang/test/CodeGenCXX/
exception-spec-decay.cpp 17 struct S2 {
29 S2 <int[10]> s2; local
30 s2.foo();
microsoft-uuidof.cpp 20 struct __declspec(uuid("87654321-4321-4321-4321-ba0987654321")) S2 { };
50 // __uuidof(S2) hasn't been used globally yet, so it's emitted when it's used
97 GUID s2_1 = __uuidof(S2);
98 GUID s2_2 = __uuidof(S2);
105 const GUID& r = __uuidof(S2);
107 const GUID* p = &__uuidof(S2);
regparm.cpp 19 struct S2 {
23 void __attribute__((regparm(3))) foo3(struct S2 a, int b);
25 void bar3(struct S2 a, int b) {
  /external/clang/test/Index/Inputs/
t1.c 15 struct S2 {
22 ((struct S2 *)0)->x = 0;
  /external/clang/test/Index/
annotate-tokens.cpp 17 struct S2 { S1 *operator->(); };
18 void test3(S2 s2) {
19 s2->f();
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
    [all...]
  /external/clang/test/OpenMP/
parallel_firstprivate_messages.cpp 12 class S2 {
15 S2():a(0) { }
16 S2(S2 &s2):a(s2.a) { }
20 const float S2::S2sc = 0;
21 const S2 b;
22 const S2 ba[5];
70 #pragma omp parallel firstprivate(S2::S2s
    [all...]
parallel_copyin_messages.cpp 11 class S2 {
14 S2():a(0) { }
15 S2 & operator =(S2 &s2) { return *this; }
44 S2 k;
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sinf.c 28 S2 = 0x111110896efbb2.0p-59, /* 0.0083333293858894631756 */
45 return (x + s*(S1+z*S2)) + s*w*r;
  /external/clang/test/CXX/class.access/class.friend/
p11.cpp 30 struct S2 {
35 struct S2 {

Completed in 1304 milliseconds

1 2 3 4 5 6 7 8