Lines Matching refs:argc

6 bool foobool(int argc) {
7 return argc;
13 int tmain(T argc, S **argv) {
26 #pragma omp parallel sections if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
30 #pragma omp parallel sections if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
34 #pragma omp parallel sections if (argc > 0 ? argv[1] : argv[2])
38 #pragma omp parallel sections if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'if' clause}}
50 #pragma omp parallel sections if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
54 #pragma omp parallel sections if(argc)
62 int main(int argc, char **argv) {
75 #pragma omp parallel sections if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}}
79 #pragma omp parallel sections if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
83 #pragma omp parallel sections if (argc > 0 ? argv[1] : argv[2])
87 #pragma omp parallel sections if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp parallel sections' cannot contain more than one 'if' clause}}
99 #pragma omp parallel sections if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this '('}}
107 #pragma omp parallel sections if(if(tmain(argc, argv) // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
112 return tmain(argc, argv);