Searched refs:S5 (Results 1 - 25 of 74) sorted by relevance

123

/external/clang/test/SemaCXX/
H A Dwarn-dangling-field.cpp39 struct S5 { struct
42 S5 s5 = { 0 }; // ok, lifetime-extended
45 S5 s5; // expected-note {{here}}
49 struct S7 : S5 {
50 S7() : S5 { 0 } {} // expected-warning {{binding reference member 'x' to a temporary}}
H A Dnew-null.cpp57 template<typename ...T> struct S5 { // expected-warning 0-1{{extension}} struct
62 template struct S5<>;
63 template struct S5<int>; // expected-note {{in instantiation of}}
H A Ddcl_ambig_res.cpp69 struct S5 { struct
73 int v(int(S5::value)); // expected-warning{{disambiguated as a function declaration}} expected-note{{add a pair of parentheses}} expected-error{{parameter declarator cannot be qualified}}
H A Delaborated-type-specifier.cpp41 int test_funcparam_scope(struct S5 * s5) {
42 struct S5 { int y; } *s5_2 = 0; struct
43 if (s5 == s5_2) return 1; // expected-error {{comparison of distinct pointer types ('struct S5 *' and 'struct S5 *')}}
H A Dtype-definition-in-specifier.cpp8 struct S5;
23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}} struct
H A Dalignof.cpp56 struct S5 { struct
60 const int test8 = __alignof__(S5::x);
/external/clang/test/OpenMP/
H A Dparallel_copyin_messages.cpp30 class S5 { // expected-note {{'S5' declared here}} class
32 S5():a(0) {} function in class:S5
33 S5 &operator =(const S5 &s5) { return *this; }
35 S5(int v):a(v) { } function in class:S5
47 S5 m(4); // expected-note {{'m' defined here}}
H A Dparallel_sections_copyin_messages.cpp33 class S5 { // expected-note {{'S5' declared here}} class
35 S5() : a(0) {} function in class:S5
36 S5 &operator=(const S5 &s5) { return *this; }
39 S5(int v) : a(v) {} function in class:S5
50 S5 m(4); // expected-note {{'m' defined here}}
H A Dparallel_firstprivate_messages.cpp39 class S5 { // expected-note {{'S5' declared here}} class
41 S5():a(0) {} function in class:S5
42 S5(const S5 &s5):a(s5.a) { } function in class:S5
44 S5(int v):a(v) { } function in class:S5
54 S5 g(5); // expected-note {{'g' defined here}}
H A Dparallel_for_copyin_messages.cpp33 class S5 { // expected-note {{'S5' declared here}} class
35 S5() : a(0) {} function in class:S5
36 S5 &operator=(const S5 &s5) { return *this; }
39 S5(int v) : a(v) {} function in class:S5
50 S5 m(4); // expected-note {{'m' defined here}}
H A Dparallel_sections_shared_messages.cpp39 class S5 { class
41 S5() : a(0) {} function in class:S5
42 S5(const S5 &s5) : a(s5.a) {} function in class:S5
45 S5(int v) : a(v) {} function in class:S5
55 S5 g(5);
H A Dparallel_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} function in class:S5
39 S5(const S5 &s5):a(s5.a) { } function in class:S5
41 S5(int v):a(v) { } function in class:S5
51 S5 g(5);
H A Dparallel_private_messages.cpp34 class S5 { // expected-note {{'S5' declared here}} class
36 S5():a(0) {} function in class:S5
38 S5(int v):a(v) { } function in class:S5
48 S5 g(5); // expected-note {{'g' defined here}}
H A Dsingle_copyprivate_messages.cpp29 class S5 { // expected-note 2 {{'S5' declared here}} class
31 S5() : a(0) {} function in class:S5
32 S5 &operator=(const S5 &s5) { return *this; }
35 S5(int v) : a(v) {} function in class:S5
41 S5 m(4); // expected-note 2 {{'m' defined here}}
H A Dsections_private_messages.cpp34 class S5 { // expected-note {{'S5' declared here}} class
36 S5() : a(0) {} function in class:S5
39 S5(int v) : a(v) {} function in class:S5
128 S5 g(5); // expected-note {{'g' defined here}}
H A Dsingle_private_messages.cpp34 class S5 { // expected-note {{'S5' declared here}} class
36 S5() : a(0) {} function in class:S5
39 S5(int v) : a(v) {} function in class:S5
96 S5 g(5); // expected-note {{'g' defined here}}
H A Dparallel_sections_firstprivate_messages.cpp43 class S5 { // expected-note 4 {{'S5' declared here}} class
45 S5(const S5 &s5) : a(s5.a) {} function in class:S5
48 S5() : a(0) {} function in class:S5
49 S5(int v) : a(v) {} function in class:S5
162 S5 g(5); // expected-note 2 {{'g' defined here}}
294 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}
H A Dparallel_sections_lastprivate_messages.cpp43 class S5 { // expected-note {{'S5' declared here}} class
45 S5() : a(0) {} function in class:S5
48 S5(const S5 &s5) : a(s5.a) {} function in class:S5
49 S5(int v) : a(v) {} function in class:S5
148 S5 g(5); // expected-note {{'g' defined here}}
268 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}
H A Dsections_firstprivate_messages.cpp43 class S5 { // expected-note 4 {{'S5' declared here}} class
45 S5(const S5 &s5) : a(s5.a) {} function in class:S5
48 S5() : a(0) {} function in class:S5
49 S5(int v) : a(v) {} function in class:S5
177 S5 g(5); // expected-note 2 {{'g' defined here}}
334 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}
H A Dsections_lastprivate_messages.cpp43 class S5 { // expected-note {{'S5' declared here}} class
45 S5() : a(0) {} function in class:S5
48 S5(const S5 &s5) : a(s5.a) {} function in class:S5
49 S5(int v) : a(v) {} function in class:S5
162 S5 g(5); // expected-note {{'g' defined here}}
308 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}
H A Dsingle_firstprivate_messages.cpp43 class S5 { // expected-note 4 {{'S5' declared here}} class
45 S5(const S5 &s5) : a(s5.a) {} function in class:S5
48 S5() : a(0) {} function in class:S5
49 S5(int v) : a(v) {} function in class:S5
139 S5 g(5); // expected-note 2 {{'g' defined here}}
238 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, S5>' requested here}}
/external/clang/test/CodeGenCXX/
H A Dwarn-padded-packed.cpp24 struct S5 { struct
29 } u; // expected-warning {{padding struct 'S5' with 3 bytes to align 'u'}}
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
/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))))
54 S5 = -2.50507602534068634195e-08, /* 0xBE5AE5E6, 0x8A2B9CEB */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp51 struct S5 { struct
52 constexpr S5();
55 constexpr S5::S5() = default;
56 static_assert(S5().m == 4, "");
/external/clang/test/CXX/class.access/class.friend/
H A Dp11.cpp52 struct S5 { struct

Completed in 1304 milliseconds

123