HomeSort by relevance Sort by last modified time
    Searched refs:S5 (Results 26 - 50 of 175) sorted by null

12 3 4 5 6 7

  /external/clang/test/OpenMP/
teams_shared_messages.cpp 36 class S5 {
38 S5():a(0) {}
39 S5(const S5 &s5):a(s5.a) { }
41 S5(int v):a(v) { }
59 S5 g(5);
teams_private_messages.cpp 34 class S5 {
36 S5():a(0) {} // expected-note {{implicitly declared private here}}
38 S5(int v):a(v) { }
56 S5 g(5);
102 #pragma omp teams private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
parallel_sections_firstprivate_messages.cpp 43 class S5 {
45 S5(const S5 &s5) : a(s5.a) {} // expected-note 4 {{implicitly declared private here}}
48 S5() : a(0) {}
49 S5(int v) : a(v) {}
109 #pragma omp parallel sections firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
141 #pragma omp parallel sections lastprivate(g) firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
170 S5 g(5)
    [all...]
parallel_sections_lastprivate_messages.cpp 44 class S5 {
46 S5() : a(0) {} // expected-note {{implicitly declared private here}}
49 S5(const S5 &s5) : a(s5.a) {}
50 S5(int v) : a(v) {}
157 S5 g(5);
235 #pragma omp parallel sections lastprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
282 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, (…)
    [all...]
sections_firstprivate_messages.cpp 43 class S5 {
45 S5(const S5 &s5) : a(s5.a) {} // expected-note 4 {{implicitly declared private here}}
48 S5() : a(0) {}
49 S5(int v) : a(v) {}
120 #pragma omp sections firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
156 #pragma omp sections lastprivate(g) firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
185 S5 g(5)
    [all...]
sections_lastprivate_messages.cpp 44 class S5 {
46 S5() : a(0) {} // expected-note {{implicitly declared private here}}
49 S5(const S5 &s5) : a(s5.a) {}
50 S5(int v) : a(v) {}
171 S5 g(5);
268 #pragma omp sections lastprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
322 return foomain<S4, S5>(argc, argv); // expected-note {{in instantiation of function template specialization 'foomain<S4, (…)
    [all...]
single_firstprivate_messages.cpp 43 class S5 {
45 S5(const S5 &s5) : a(s5.a) {} // expected-note 4 {{implicitly declared private here}}
48 S5() : a(0) {}
49 S5(int v) : a(v) {}
100 #pragma omp single firstprivate(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
124 #pragma omp single firstprivate(g) // expected-error {{calling a private constructor of class 'S5'}}
147 S5 g(5)
    [all...]
distribute_private_messages.cpp 34 class S5 {
36 S5():a(0) {} // expected-note {{implicitly declared private here}}
38 S5(int v):a(v) { }
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'}}
parallel_sections_private_messages.cpp 34 class S5 {
36 S5() : a(0) {} // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {}
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'}}
sections_private_messages.cpp 34 class S5 {
36 S5() : a(0) {} // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {}
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'}}
single_private_messages.cpp 34 class S5 {
36 S5() : a(0) {} // expected-note {{implicitly declared private here}}
39 S5(int v) : a(v) {}
104 S5 g(5);
127 #pragma omp single private(e, g) // expected-error {{calling a private constructor of class 'S4'}} expected-error {{calling a private constructor of class 'S5'}}
parallel_reduction_messages.cpp 50 class S5 {
52 S5() : a(0) {} // expected-note {{implicitly declared private here}}
53 S5(const S5 &s5) : a(s5.a) {}
54 S5 &operator+(const S5 &arg);
57 S5(int v) : a(v) {}
172 S5 g(5)
    [all...]
parallel_sections_reduction_messages.cpp 50 class S5 {
52 S5() : a(0) {} // expected-note {{implicitly declared private here}}
53 S5(const S5 &s5) : a(s5.a) {}
54 S5 &operator+(const S5 &arg);
57 S5(int v) : a(v) {}
230 S5 g(5)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_sinhl.c 50 S5 = 8.3333333333333332e-3, /* 0x11111111111111.0p-59 */
64 S5 = 8.33333333333333333333333333337643193e-3L, /* 0x111111111111111111111111180f5.0p-119L */
111 ((S9*x2 + S7)*x2 + S5)*(x2*x*x2) + S3*(x2*x) + x);
117 S5)* (x2*x*x2) +
  /external/clang/test/CXX/class.access/class.friend/
p11.cpp 55 struct S5 {
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_sinl.c 37 S5 = -0.25052108385441718775048214826384312253862930064745e-7L,
55 r = S2+z*(S3+z*(S4+z*(S5+z*(S6+z*(S7+z*(S8+
  /external/clang/test/SemaCXX/
err_typecheck_assign_const.cpp 38 struct S5 {
44 S5 s5; local
45 s5.field = 5;
46 s5.const_field = 5; // expected-error{{cannot assign to non-static data member 'const_field' with const-qualified type 'const int'}}
empty-class-layout.cpp 58 struct S5 : S3, Empty {};
59 SA(9, sizeof(S5) == 2);
61 struct S6 : S5 { };
alignof.cpp 56 struct S5 {
60 const int test8 = __alignof__(S5::x);
openmp_default_simd_align.cpp 54 struct S5 {
58 const int test8 = __builtin_omp_required_simd_align(decltype(S5::x));
  /art/runtime/arch/arm/
registers_arm.h 62 S5 = 5,
  /external/clang/test/ASTMerge/Inputs/
struct1.c 30 struct S5 { int i : 8; unsigned j : 8; } x5;
struct2.c 27 struct S5 { int i : 8; unsigned j : 8; } x5;
  /external/clang/test/CXX/class/class.mem/
p1.cpp 47 struct S5
  /external/clang/test/CodeGenCXX/
catch-undef-behavior.cpp 522 struct S5 {
526 void callee5(S5);
528 S5 s51;
530 S5 s52;

Completed in 440 milliseconds

12 3 4 5 6 7