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

123456

/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/OpenMP/
H A Dparallel_copyin_messages.cpp23 class S4 { // expected-note {{'S4' declared here}} class
25 S4();
26 S4 &operator =(const S4 &s4);
28 S4(int v):a(v) { } function in class:S4
46 S4 l(3); // expected-note {{'l' defined here}}
H A Dparallel_sections_copyin_messages.cpp25 class S4 { // expected-note {{'S4' declared here}} class
27 S4();
28 S4 &operator=(const S4 &s4);
31 S4(int v) : a(v) {} function in class:S4
49 S4 l(3); // expected-note {{'l' defined here}}
H A Dparallel_firstprivate_messages.cpp32 class S4 { // expected-note {{'S4' declared here}} class
34 S4();
35 S4(const S4 &s4);
37 S4(int v):a(v) { } function in class:S4
53 S4 e(4); // expected-note {{'e' defined here}}
H A Dparallel_for_copyin_messages.cpp25 class S4 { // expected-note {{'S4' declared here}} class
27 S4();
28 S4 &operator=(const S4 &s4);
31 S4(int v) : a(v) {} function in class:S4
49 S4 l(3); // expected-note {{'l' defined here}}
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
54 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
50 S4 e(4);
H A Dparallel_private_messages.cpp28 class S4 { // expected-note {{'S4' declared here}} class
30 S4();
32 S4(int v):a(v) { } function in class:S4
47 S4 e(4); // expected-note {{'e' defined here}}
H A Dsingle_copyprivate_messages.cpp21 class S4 { // expected-note 2 {{'S4' declared here}} class
23 S4();
24 S4 &operator=(const S4 &s4);
27 S4(int v) : a(v) {} function in class:S4
40 S4 l(3); // expected-note 2 {{'l' defined here}}
H A Dsections_private_messages.cpp27 class S4 { // expected-note {{'S4' declared here}} class
29 S4();
32 S4(int v) : a(v) {} function in class:S4
127 S4 e(4); // expected-note {{'e' defined here}}
/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/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...]
H A DVariadicFunctionTest.cpp79 std::string S4("Fab4");
81 StringAppend(&S4, "John", "Paul", "George", "Ringo"));
82 EXPECT_EQ("Fab4JohnPaulGeorgeRingo", S4);
/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>();
/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/CXX/class.access/class.friend/
H A Dp11.cpp47 struct S4 { struct
/external/clang/test/CodeGen/
H A Dpragma-pack-1.c44 struct S4 struct
64 // CHECK: %struct.S4 = type { [3 x i8], %struct.T4, i32 }

Completed in 888 milliseconds

123456