/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/ |
H A D | p5.cpp | 36 struct S5 : S1 { struct in inherits:S1
|
/external/clang/test/SemaCXX/ |
H A D | new-null.cpp | 57 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 D | type-definition-in-specifier.cpp | 8 struct S5; 23 struct S5 { int x; } f1() { return S5(); } // expected-error{{result type}} struct
|
H A D | warn-dangling-field.cpp | 39 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 D | dcl_ambig_res.cpp | 69 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 D | k_sin.c | 30 * |----- - (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 D | threadprivate_codegen.cpp | 18 // CHECK-DAG: [[S5:%.+]] = type { [[INT]], [[INT]], [[INT]] } 25 // CHECK-DEBUG-DAG: [[S5:%.+]] = type { [[INT]], [[INT]], [[INT]] } 31 // CHECK-TLS-DAG: [[S5:%.+]] = type { [[INT]], [[INT]], [[INT]] } 100 struct S5 { struct 102 S5() function in struct:S5 105 S5(int a) function in struct:S5 108 S5(const S5 &s) { function in struct:S5 111 ~S5() { 126 // CHECK-DAG: [[GS3:@.+]] = external global [[S5]] [all...] |
H A D | distribute_firstprivate_messages.cpp | 42 class S5 { class 44 S5():a(0) {} function in class:S5 45 S5(const S5 &s5):a(s5.a) { } function in class:S5 47 S5(int v):a(v) { } function in class:S5 62 S5 g(5);
|
H A D | distribute_private_messages.cpp | 34 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 49 S5 g(5); 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 D | for_private_messages.cpp | 34 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 128 S5 g(5); 161 #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 D | for_simd_private_messages.cpp | 34 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 D | parallel_copyin_messages.cpp | 30 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 D | parallel_for_copyin_messages.cpp | 33 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 D | parallel_for_private_messages.cpp | 34 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 D | parallel_for_simd_copyin_messages.cpp | 33 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 D | parallel_for_simd_private_messages.cpp | 34 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 D | parallel_private_messages.cpp | 34 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 D | parallel_sections_copyin_messages.cpp | 33 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 D | parallel_sections_private_messages.cpp | 34 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 D | parallel_sections_shared_messages.cpp | 39 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 D | parallel_shared_messages.cpp | 36 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 D | sections_private_messages.cpp | 34 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 D | simd_private_messages.cpp | 31 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'}}
|
/external/clang/test/CXX/class.access/class.friend/ |
H A D | p11.cpp | 55 struct S5 { struct
|
/external/clang/test/CodeGenCXX/ |
H A D | warn-padded-packed.cpp | 24 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*) { }
|