Searched defs:S4 (Results 1 - 25 of 161) sorted by relevance

1234567

/external/clang/test/Modules/Inputs/
H A Dredecl-merge-left.h52 struct S4 { struct
57 void consume_S4(struct S4*);
/external/clang/test/SemaCXX/
H A Dnew-null.cpp48 template<bool B> struct S4 { struct
53 template struct S4<true>;
54 template struct S4<false>; // expected-note {{in instantiation of}}
H A Dwarn-dangling-field.cpp31 template <typename T> struct S4 { struct
33 S4(int i) : x(i) {} // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}} function in struct:S4
36 template struct S4<int>; // no warning from this instantiation
37 template struct S4<int&>; // expected-note {{in instantiation}}
H A Ddcl_ambig_res.cpp37 struct S4 { struct
40 S4<int()> x; //type-id
41 S4<int(1)> y; // expected-error{{must be a type}}
/external/clang/test/SemaTemplate/
H A Dself-comparison.cpp28 template <int A> struct S4 { struct
46 S4<1> s4; s4.foo<1>();
/external/fdlibm/
H A Dk_sin.c30 * |----- - (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))))
53 S4 = 2.75573137070700676789e-06, /* 0x3EC71DE3, 0x57B1FE7D */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/OpenMP/
H A Dthreadprivate_codegen.cpp17 // CHECK-DAG: [[S4:%.+]] = type { [[INT]], [[INT]] }
24 // CHECK-DEBUG-DAG: [[S4:%.+]] = type { [[INT]], [[INT]] }
30 // CHECK-TLS-DAG: [[S4:%.+]] = type { [[INT]], [[INT]] }
84 struct S4 { struct
86 S4() function in struct:S4
89 S4(int a) function in struct:S4
92 S4(const S4 &s) { function in struct:S4
95 ~S4() {
132 // CHECK-DAG: [[ST_S4_ST:@.+]] = linkonce_odr global %struct.S4 zeroinitialize
[all...]
H A Ddistribute_firstprivate_messages.cpp35 class S4 { class
37 S4();
38 S4(const S4 &s4);
40 S4(int v):a(v) { } function in class:S4
61 S4 e(4);
H A Ddistribute_parallel_for_copyin_messages.cpp25 class S4 { class
27 S4();
28 S4 &operator=(const S4 &s4); // expected-note 3 {{implicitly declared private here}}
31 S4(int v) : a(v) {} function in class:S4
49 S4 l(3);
96 #pragma omp distribute parallel for copyin(l) // expected-error 2 {{'operator=' is a private member of 'S4'}}
160 #pragma omp distribute parallel for copyin(l) // expected-error {{'operator=' is a private member of 'S4'}}
H A Ddistribute_parallel_for_private_messages.cpp27 class S4 { class
29 S4(); // expected-note {{implicitly declared private here}}
32 S4(int v) : a(v) { function in class:S4
212 S4 e(4);
270 #pragma omp distribute parallel for private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Ddistribute_parallel_for_shared_messages.cpp23 class S4 { class
25 S4();
26 S4(const S4 &s4);
28 S4(int v):a(v) { } function in class:S4
53 S4 e(4);
227 S4 e(4);
H A Ddistribute_parallel_for_simd_copyin_messages.cpp25 class S4 { class
27 S4();
28 S4 &operator=(const S4 &s4); // expected-note 3 {{implicitly declared private here}}
31 S4(int v) : a(v) {} function in class:S4
49 S4 l(3);
96 #pragma omp distribute parallel for simd copyin(l) // expected-error 2 {{'operator=' is a private member of 'S4'}}
160 #pragma omp distribute parallel for simd copyin(l) // expected-error {{'operator=' is a private member of 'S4'}}
H A Ddistribute_parallel_for_simd_private_messages.cpp27 class S4 { class
29 S4(); // expected-note {{implicitly declared private here}}
32 S4(int v) : a(v) { function in class:S4
212 S4 e(4);
270 #pragma omp distribute parallel for simd private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Ddistribute_parallel_for_simd_shared_messages.cpp23 class S4 { class
25 S4();
26 S4(const S4 &s4);
28 S4(int v):a(v) { } function in class:S4
53 S4 e(4);
227 S4 e(4);
H A Ddistribute_private_messages.cpp28 class S4 { class
30 S4(); // expected-note {{implicitly declared private here}}
32 S4(int v):a(v) { } function in class:S4
48 S4 e(4);
80 #pragma omp distribute private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Ddistribute_simd_private_messages.cpp27 class S4 { class
29 S4(); // expected-note {{implicitly declared private here}}
32 S4(int v) : a(v) { function in class:S4
212 S4 e(4);
270 #pragma omp distribute simd private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dfor_private_messages.cpp27 class S4 { class
29 S4(); // expected-note {{implicitly declared private here}}
32 S4(int v) : a(v) { function in class:S4
159 void bar(S4 a[2]) {
175 S4 e(4);
211 #pragma omp for private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dfor_simd_private_messages.cpp27 class S4 { class
29 S4(); // expected-note {{implicitly declared private here}}
32 S4(int v) : a(v) { function in class:S4
168 S4 e(4);
204 #pragma omp for simd private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
/external/clang/test/CodeGen/
H A Dpragma-pack-1.c44 struct S4 struct
64 // CHECK: %struct.S4 = type { [3 x i8], %struct.T4, i32 }
/external/llvm/include/llvm/ADT/
H A DStringSwitch.h136 const char (&S4)[N4], const T& Value) {
142 (N4-1 == Str.size() && std::memcmp(S4, Str.data(), N4-1) == 0))) {
134 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp85 ImmutableSet<int> S4 = f.add(S2, 9); local
90 EXPECT_FALSE(S4.isEmpty());
109 EXPECT_TRUE(S4.contains(9));
110 EXPECT_TRUE(S4.contains(3));
111 EXPECT_TRUE(S4.contains(4));
112 EXPECT_TRUE(S4.contains(5));
113 EXPECT_FALSE(S4.contains(20));
114 EXPECT_FALSE(S4.contains(43));
123 ImmutableSet<int> S4 = f.remove(S3, 3); local
127 EXPECT_FALSE(S4
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringSwitch.h106 const char (&S4)[N4], const T& Value) {
108 .Case(S4, Value);
104 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DImmutableSetTest.cpp85 ImmutableSet<int> S4 = f.add(S2, 9); local
90 EXPECT_FALSE(S4.isEmpty());
109 EXPECT_TRUE(S4.contains(9));
110 EXPECT_TRUE(S4.contains(3));
111 EXPECT_TRUE(S4.contains(4));
112 EXPECT_TRUE(S4.contains(5));
113 EXPECT_FALSE(S4.contains(20));
114 EXPECT_FALSE(S4.contains(43));
123 ImmutableSet<int> S4 = f.remove(S3, 3); local
127 EXPECT_FALSE(S4
[all...]
/external/clang/test/CXX/class.access/class.friend/
H A Dp11.cpp48 struct S4 { struct
/external/clang/test/CodeGenCXX/
H A Dwarn-padded-packed.cpp19 struct S4 { struct
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }

Completed in 1615 milliseconds

1234567