Searched defs:S5 (Results 1 - 25 of 83) sorted by relevance

1234

/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp5.cpp36 struct S5 : S1 { struct in inherits:S1
/external/clang/test/SemaCXX/
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 Dtype-definition-in-specifier.cpp8 struct S5;
23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}} struct
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 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}}
/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/OpenMP/
H A Dthreadprivate_codegen.cpp12 // CHECK-DAG: [[S5:%.+]] = type { [[INT]], [[INT]], [[INT]] }
19 // CHECK-DEBUG-DAG: [[S5:%.+]] = type { [[INT]], [[INT]], [[INT]] }
88 struct S5 { struct
90 S5() function in struct:S5
93 S5(int a) function in struct:S5
96 S5(const S5 &s) { function in struct:S5
99 ~S5() {
114 // CHECK-DAG: [[GS3:@.+]] = external global [[S5]]
131 // CHECK-DEBUG-DAG: [[GS3:@.+]] = external global [[S5]]
[all...]
H A Dfor_private_messages.cpp34 class S5 { class
36 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
39 S5(int v) : a(v) {} function in class:S5
121 S5 g(5);
154 #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.cpp34 class S5 { class
36 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
39 S5(int v) : a(v) {} function in class:S5
121 S5 g(5);
154 #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'}}
H A Dparallel_copyin_messages.cpp30 class S5 { class
32 S5():a(0) {} function in class:S5
33 S5 &operator =(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
35 S5(int v):a(v) { } function in class:S5
54 S5 m(4);
69 #pragma omp parallel copyin(m) // expected-error {{'operator=' is a private member of 'S5'}}
H A Dparallel_firstprivate_messages.cpp39 class S5 { class
41 S5():a(0) {} function in class:S5
42 S5(const S5 &s5):a(s5.a) { } // expected-note {{implicitly declared private here}} function in class:S5
44 S5(int v):a(v) { } function in class:S5
62 S5 g(5);
80 #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.cpp33 class S5 { class
35 S5() : a(0) {} function in class:S5
36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {} function in class:S5
50 S5 m(4);
93 #pragma omp parallel for copyin(m) // expected-error {{'operator=' is a private member of 'S5'}}
H A Dparallel_for_private_messages.cpp34 class S5 { class
36 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
39 S5(int v) : a(v) {} function in class:S5
121 S5 g(5);
154 #pragma omp 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 Dparallel_for_simd_copyin_messages.cpp33 class S5 { class
35 S5() : a(0) {} function in class:S5
36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {} function in class:S5
50 S5 m(4);
93 #pragma omp parallel for simd copyin(m) // expected-error {{'operator=' is a private member of 'S5'}}
H A Dparallel_for_simd_private_messages.cpp34 class S5 { class
36 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
39 S5(int v) : a(v) {} function in class:S5
121 S5 g(5);
154 #pragma omp 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 Dparallel_private_messages.cpp34 class S5 { class
36 S5():a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
38 S5(int v):a(v) { } function in class:S5
56 S5 g[] = {5, 6};
73 #pragma omp parallel private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dparallel_sections_copyin_messages.cpp33 class S5 { class
35 S5() : a(0) {} function in class:S5
36 S5 &operator=(const S5 &s5) { return *this; } // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {} function in class:S5
50 S5 m(4);
103 #pragma omp parallel sections copyin(m) // expected-error {{'operator=' is a private member of 'S5'}}
H A Dparallel_sections_private_messages.cpp34 class S5 { class
36 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
39 S5(int v) : a(v) {} function in class:S5
136 S5 g(5);
179 #pragma omp parallel sections private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
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
63 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
59 S5 g(5);
H A Dsections_private_messages.cpp34 class S5 { class
36 S5() : a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
39 S5(int v) : a(v) {} function in class:S5
136 S5 g(5);
179 #pragma omp sections private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dsimd_private_messages.cpp31 class S5 { class
33 S5():a(0) {} // expected-note {{implicitly declared private here}} function in class:S5
35 S5(int v):a(v) { } function in class:S5
98 S5 g(5);
121 #pragma omp simd private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
H A Dsingle_copyprivate_messages.cpp29 class S5 { class
31 S5() : a(0) {} function in class:S5
32 S5 &operator=(const S5 &s5) { return *this; } // expected-note 3 {{implicitly declared private here}}
35 S5(int v) : a(v) {} function in class:S5
41 S5 m(4);
69 #pragma omp single copyprivate(m) // expected-error 2 {{'operator=' is a private member of 'S5'}}
140 #pragma omp single copyprivate(m) // expected-error {{'operator=' is a private member of 'S5'}}
/external/clang/test/CXX/class.access/class.friend/
H A Dp11.cpp56 struct S5 { struct
/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*) { }

Completed in 186 milliseconds

1234