Lines Matching refs:threadprivate
7 #pragma omp threadprivate // expected-error {{expected '(' after 'threadprivate'}}
8 #pragma omp threadprivate( // expected-error {{expected identifier}} expected-error {{expected ')'}…
9 #pragma omp threadprivate() // expected-error {{expected identifier}}
10 #pragma omp threadprivate(1) // expected-error {{expected unqualified-id}}
16 #pragma omp threadprivate(1) // expected-error {{expected unqualified-id}}
22 #pragma omp threadprivate(a) allocate(a) // expected-warning {{extra tokens at the end of '#pragma …
23 #pragma omp threadprivate(u) // expected-error {{use of undeclared identifier 'u'}}
24 #pragma omp threadprivate(d, a)
27 #pragma omp threadprivate(l)) // expected-warning {{extra tokens at the end of '#pragma omp threadp… in foo()
31 #pragma omp threadprivate (a) (
33 #pragma omp threadprivate (a) [ // expected-warning {{extra tokens at the end of '#pragma omp threa…
34 #pragma omp threadprivate (a) { // expected-warning {{extra tokens at the end of '#pragma omp threa…
35 #pragma omp threadprivate (a) ) // expected-warning {{extra tokens at the end of '#pragma omp threa…
36 #pragma omp threadprivate (a) ] // expected-warning {{extra tokens at the end of '#pragma omp threa…
37 #pragma omp threadprivate (a) } // expected-warning {{extra tokens at the end of '#pragma omp threa…
38 #pragma omp threadprivate a // expected-error {{expected '(' after 'threadprivate'}}
39 #pragma omp threadprivate(d // expected-error {{expected ')'}} expected-note {{to match this '('}}
40 #pragma omp threadprivate(d)) // expected-warning {{extra tokens at the end of '#pragma omp threadp…
42 #pragma omp threadprivate(x)) // expected-warning {{extra tokens at the end of '#pragma omp threadp…
43 #pragma omp threadprivate(y)),
45 #pragma omp threadprivate(a,d)
46 #pragma omp threadprivate(d.a) // expected-error {{expected identifier}}
47 #pragma omp threadprivate((float)a) // expected-error {{expected unqualified-id}}
49 #pragma omp threadprivate(faa) // expected-error {{use of undeclared identifier 'faa'; did you mean…
50 #pragma omp threadprivate(foo) // expected-error {{'foo' is not a global variable, static local var…
51 #pragma omp threadprivate (int a=2) // expected-error {{expected unqualified-id}}
56 #pragma omp threadprivate (e) // expected-error {{threadprivate variable with incomplete type 'Inco…
59 #pragma omp threadprivate (f) // expected-error {{arguments of '#pragma omp threadprivate' cannot b…
68 #pragma omp threadprivate (b, a) // expected-error {{'a' is not a global variable, static local var…
70 #pragma omp threadprivate (b) // expected-error {{use of undeclared identifier 'b'}}
71 #pragma omp threadprivate (TestClass::b) // expected-error {{'#pragma omp threadprivate' must appea…
72 #pragma omp threadprivate (g)
76 #pragma omp threadprivate (m, m)
78 #pragma omp threadprivate (m) // expected-error {{use of undeclared identifier 'm'}}
79 #pragma omp threadprivate (ns::m)
80 #pragma omp threadprivate (ns:m) // expected-error {{unexpected ':' in nested name specifier; did y…
84 #pragma omp threadprivate (h, i)
95 #pragma omp threadprivate (s)
97 #pragma omp threadprivate (s) // expected-error {{use of undeclared identifier 's'}}
100 #pragma omp threadprivate (t) // expected-error {{variable 't' cannot be threadprivate because it i…
106 #pragma omp threadprivate (reg0) // expected-error {{variable 'reg0' cannot be threadprivate becaus…
109 #pragma omp threadprivate (o)
112 #pragma omp threadprivate (o)
113 #pragma omp threadprivate (o)
115 #pragma omp threadprivate (o) // expected-error {{reference to 'o' is ambiguous}}
116 #pragma omp threadprivate (::o)
126 #pragma omp threadprivate(LocalClass) in main()
131 #pragma omp threadprivate(argc+y) // expected-error {{expected identifier}} in main()
132 #pragma omp threadprivate(argc,y) // expected-error 2 {{arguments of '#pragma omp threadprivate' mu… in main()
133 #pragma omp threadprivate(d2) // expected-error {{'#pragma omp threadprivate' must precede all refe… in main()
134 #pragma omp threadprivate(d1) in main()
137 #pragma omp threadprivate(d3) // expected-error {{'#pragma omp threadprivate' must appear in the sc… in main()
139 #pragma omp threadprivate(d3) in main()
141 #pragma omp threadprivate(d4) // expected-error {{'#pragma omp threadprivate' cannot be an immediat… in main()
143 #pragma omp threadprivate(a) // expected-error {{'#pragma omp threadprivate' must appear in the sco… in main()
145 #pragma omp threadprivate(d) // expected-error {{'#pragma omp threadprivate' must appear in the sco… in main()