Searched refs:S4 (Results 1 - 25 of 238) sorted by relevance

12345678910

/external/clang/test/SemaCXX/
H A Delaborated-type-specifier.cpp22 void test_elab2(struct S4 *s4); // expected-note{{'NS::S4' declared here}}
25 void X::test_elab2(S4 *s4) { } // expected-note{{passing argument to parameter 's4' here}}
29 struct S4 *s4 = 0;
30 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'}}
34 S4 *get_S4();
38 S4 *s4; // expected-error{{unknown type name 'S4'; did you mean 'NS::S4'
[all...]
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 Dcxx11-crashes.cpp23 struct S4 { struct in namespace:rdar12240916
29 S4 x;
33 S4 foo2() {
34 S4 s;
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}}
H A Derr_init_conversion_failed.cpp17 struct S4 { struct
18 S4() : x((void)0) {}; function in struct:S4
/external/clang/test/CXX/class/class.mem/
H A Dp1.cpp33 struct S4 struct in struct:S3
39 struct S4 struct
44 int S4::v4; //expected-note{{previous definition is here}}
45 int S4::v4; //expected-error{{redefinition of 'v4'}}
/external/clang/test/CodeGen/
H A Dmalign-double.cpp7 /* Structs S1, S2, S3, S4, and union U5 are taken from Intel, "IA-64
60 struct S4 { struct
66 unsigned S4_align = __alignof(struct S4);
67 unsigned S4_size = sizeof(struct S4);
73 unsigned S4_c_offset = (unsigned) &((struct S4*) 0)->c;
74 unsigned S4_d_offset = (unsigned) &((struct S4*) 0)->d;
75 unsigned S4_s_offset = (unsigned) &((struct S4*) 0)->s;
/external/clang/test/OpenMP/
H A Dparallel_copyin_messages.cpp23 class S4 { class
25 S4();
26 S4 &operator =(const S4 &s4); // expected-note {{implicitly declared private here}}
28 S4(int v):a(v) { } function in class:S4
53 S4 l(3);
65 #pragma omp parallel copyin (l) // expected-error {{'operator=' is a private member of 'S4'}}
H A Dparallel_sections_copyin_messages.cpp25 class S4 { class
27 S4();
28 S4 &operator=(const S4 &s4); // expected-note {{implicitly declared private here}}
31 S4(int v) : a(v) {} function in class:S4
49 S4 l(3);
87 #pragma omp parallel sections copyin(l) // expected-error {{'operator=' is a private member of 'S4'}}
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 Dparallel_firstprivate_messages.cpp32 class S4 { class
34 S4();
35 S4(const S4 &s4); // expected-note {{implicitly declared private here}}
37 S4(int v):a(v) { } function in class:S4
61 S4 e(4);
81 #pragma omp parallel firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dparallel_for_copyin_messages.cpp25 class S4 { class
27 S4();
28 S4 &operator=(const S4 &s4); // expected-note {{implicitly declared private here}}
31 S4(int v) : a(v) {} function in class:S4
49 S4 l(3);
81 #pragma omp parallel for copyin(l) // expected-error {{'operator=' is a private member of 'S4'}}
H A Dparallel_for_simd_copyin_messages.cpp25 class S4 { class
27 S4();
28 S4 &operator=(const S4 &s4); // expected-note {{implicitly declared private here}}
31 S4(int v) : a(v) {} function in class:S4
49 S4 l(3);
81 #pragma omp parallel for simd copyin(l) // expected-error {{'operator=' is a private member of 'S4'}}
H A Dparallel_sections_shared_messages.cpp31 class S4 { class
33 S4();
34 S4(const S4 &s4);
37 S4(int v) : a(v) {} function in class:S4
62 S4 e(4);
H A Dparallel_shared_messages.cpp29 class S4 { class
31 S4();
32 S4(const S4 &s4);
34 S4(int v):a(v) { } function in class:S4
58 S4 e(4);
H A Dtask_firstprivate_messages.cpp45 class S4 { class
47 S4();
48 S4(const S4 &s4); // expected-note 2 {{implicitly declared private here}}
51 S4(int v) : a(v) {} function in class:S4
81 S4 e(4);
101 #pragma omp task firstprivate(e, g) // expected-error 2 {{calling a private constructor of class 'S4'}} expected-error 2 {{calling a private constructor of class 'S5'}}
H A Dtask_shared_messages.cpp31 class S4 { class
33 S4();
34 S4(const S4 &s4);
37 S4(int v) : a(v) {} function in class:S4
62 S4 e(4);
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp41 struct S4 { struct
42 S4() = default;
43 S4(const S4&) = default; // expected-note {{here}}
44 S4(S4&&) = default; // expected-note {{here}}
47 constexpr S4 s4a{}; // ok
48 constexpr S4 s4b = S4(); // expected-error {{constant expression}} expected-note {{non-constexpr constructor}}
49 constexpr S4 s4
[all...]
/external/boringssl/src/decrepit/cast/
H A Dcast.c246 #define S4 CAST_S_table4 macro
284 l = X[0] ^ S4[x[13]] ^ S5[x[15]] ^ S6[x[12]] ^ S7[x[14]] ^ S6[x[8]];
286 l = X[2] ^ S4[z[0]] ^ S5[z[2]] ^ S6[z[1]] ^ S7[z[3]] ^ S7[x[10]];
288 l = X[3] ^ S4[z[7]] ^ S5[z[6]] ^ S6[z[5]] ^ S7[z[4]] ^ S4[x[9]];
290 l = X[1] ^ S4[z[10]] ^ S5[z[9]] ^ S6[z[11]] ^ S7[z[8]] ^ S5[x[11]];
293 K[0] = S4[z[8]] ^ S5[z[9]] ^ S6[z[7]] ^ S7[z[6]] ^ S4[z[2]];
294 K[1] = S4[z[10]] ^ S5[z[11]] ^ S6[z[5]] ^ S7[z[4]] ^ S5[z[6]];
295 K[2] = S4[
[all...]
/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/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/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*) { }
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-left.h52 struct S4 { struct
57 void consume_S4(struct S4*);
/external/clang/test/SemaTemplate/
H A Dself-comparison.cpp28 template <int A> struct S4 { struct
46 S4<1> s4; s4.foo<1>();

Completed in 519 milliseconds

12345678910