Lines Matching full:sections
55 #pragma omp parallel sections copyin // expected-error {{expected '(' after 'copyin'}} in main()
59 #pragma omp parallel sections copyin( // expected-error {{expected expression}} expected-error {{ex… in main()
63 #pragma omp parallel sections copyin() // expected-error {{expected expression}} in main()
67 #pragma omp parallel sections copyin(k // expected-error {{expected ')'}} expected-note {{to match … in main()
71 #pragma omp parallel sections copyin(h, // expected-error {{expected expression}} expected-error {{… in main()
75 #pragma omp parallel sections copyin(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected var… in main()
79 #pragma omp parallel sections copyin(l) // expected-error {{copyin variable must have an accessible… in main()
83 #pragma omp parallel sections copyin(S1) // expected-error {{'S1' does not refer to a value}} in main()
87 #pragma omp parallel sections copyin(argv[1]) // expected-error {{expected variable name}} in main()
91 #pragma omp parallel sections copyin(i) // expected-error {{copyin variable must be threadprivate}} in main()
95 #pragma omp parallel sections copyin(m) // expected-error {{copyin variable must have an accessible… in main()
99 #pragma omp parallel sections copyin(ST < int > ::s) // expected-error {{copyin variable must be th… in main()