Lines Matching refs:sections
65 #pragma omp parallel sections copyin // expected-error {{expected '(' after 'copyin'}} in main()
69 #pragma omp parallel sections copyin( // expected-error {{expected expression}} expected-error {{ex… in main()
73 #pragma omp parallel sections copyin() // expected-error {{expected expression}} in main()
77 #pragma omp parallel sections copyin(k // expected-error {{expected ')'}} expected-note {{to match … in main()
81 #pragma omp parallel sections copyin(h, // expected-error {{expected expression}} expected-error {{… in main()
85 #pragma omp parallel sections copyin(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected var… in main()
89 #pragma omp parallel sections copyin(l) // expected-error {{'operator=' is a private member of 'S4'… in main()
93 #pragma omp parallel sections copyin(S1) // expected-error {{'S1' does not refer to a value}} in main()
97 #pragma omp parallel sections copyin(argv[1]) // expected-error {{expected variable name}} in main()
101 #pragma omp parallel sections copyin(i) // expected-error {{copyin variable must be threadprivate}} in main()
105 #pragma omp parallel sections copyin(m) // expected-error {{'operator=' is a private member of 'S5'… in main()
109 #pragma omp parallel sections copyin(ST < int > ::s, B::x) // expected-error {{copyin variable must… in main()