Lines Matching refs:copyin
63 #pragma omp parallel sections copyin // expected-error {{expected '(' after 'copyin'}} in main()
67 #pragma omp parallel sections copyin( // expected-error {{expected expression}} expected-error {{ex… in main()
71 #pragma omp parallel sections copyin() // expected-error {{expected expression}} in main()
75 #pragma omp parallel sections copyin(k // expected-error {{expected ')'}} expected-note {{to match … in main()
79 #pragma omp parallel sections copyin(h, // expected-error {{expected expression}} expected-error {{… in main()
83 #pragma omp parallel sections copyin(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected var… in main()
87 #pragma omp parallel sections copyin(l) // expected-error {{'operator=' is a private member of 'S4'… in main()
91 #pragma omp parallel sections copyin(S1) // expected-error {{'S1' does not refer to a value}} in main()
95 #pragma omp parallel sections copyin(argv[1]) // expected-error {{expected variable name}} in main()
99 #pragma omp parallel sections copyin(i) // expected-error {{copyin variable must be threadprivate}} in main()
103 #pragma omp parallel sections copyin(m) // expected-error {{'operator=' is a private member of 'S5'… in main()
107 #pragma omp parallel sections copyin(ST < int > ::s, B::x) // expected-error {{copyin variable must… in main()