Lines Matching full:teams
60 #pragma omp teams private // expected-error {{expected '(' after 'private'}}
63 #pragma omp teams private ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
66 #pragma omp teams private () // expected-error {{expected expression}}
69 #pragma omp teams private (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
72 #pragma omp teams private (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
75 #pragma omp teams private (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
78 #pragma omp teams private (argc argv) // expected-error {{expected ',' or ')' in 'private' clause}}
81 #pragma omp teams private (S1) // expected-error {{'S1' does not refer to a value}}
84 #pragma omp teams private (a, b, c, d, f) // expected-error {{a private variable with incomplete type 'S1'}} expected-error 3 {{shared variable cannot be private}}
87 #pragma omp teams private (argv[1]) // expected-error {{expected variable name}}
90 #pragma omp teams private(ba)
93 #pragma omp teams private(ca) // expected-error {{shared variable cannot be private}}
96 #pragma omp teams private(da) // expected-error {{shared variable cannot be private}}
99 #pragma omp teams private(S2::S2s) // expected-error {{shared variable cannot be private}}
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'}}
105 #pragma omp teams private(threadvar, B::x) // expected-error 2 {{threadprivate or thread local variable cannot be private}}
108 #pragma omp teams shared(i), private(i) // expected-error {{shared variable cannot be private}} expected-note {{defined as shared}}
111 #pragma omp teams firstprivate(i) private(i) // expected-error {{firstprivate variable cannot be private}} expected-note {{defined as firstprivate}}
114 #pragma omp teams private(i)
117 #pragma omp teams private(j)
120 #pragma omp teams firstprivate(i)
127 #pragma omp teams private(m) // OK