Lines Matching refs:argc
6 bool foobool(int argc) { in foobool() argument
7 return argc; in foobool()
13 int tmain(T argc, S **argv) { in tmain() argument
26 …#pragma omp parallel sections if (argc // expected-error {{expected ')'}} expected-note {{to match… in tmain()
30 …#pragma omp parallel sections if (argc)) // expected-warning {{extra tokens at the end of '#pragma… in tmain()
34 #pragma omp parallel sections if (argc > 0 ? argv[1] : argv[2]) in tmain()
38 …#pragma omp parallel sections if (foobool(argc)), if (true) // expected-error {{directive '#pragma… in tmain()
50 …#pragma omp parallel sections if (argc argc) // expected-error {{expected ')'}} expected-note {{to… in tmain()
54 #pragma omp parallel sections if(argc) in tmain()
62 …#pragma omp parallel sections if(parallel : argc // expected-error {{expected ')'}} expected-note … in tmain()
66 #pragma omp parallel sections if(parallel : argc) in tmain()
70 …#pragma omp parallel sections if(parallel : argc) if (for:argc) // expected-error {{directive name… in tmain()
74 …#pragma omp parallel sections if(parallel : argc) if (parallel:argc) // expected-error {{directive… in tmain()
78 …#pragma omp parallel sections if(parallel : argc) if (argc) // expected-error {{no more 'if' claus… in tmain()
86 int main(int argc, char **argv) { in main() argument
99 …#pragma omp parallel sections if (argc // expected-error {{expected ')'}} expected-note {{to match… in main()
103 …#pragma omp parallel sections if (argc)) // expected-warning {{extra tokens at the end of '#pragma… in main()
107 #pragma omp parallel sections if (argc > 0 ? argv[1] : argv[2]) in main()
111 …#pragma omp parallel sections if (foobool(argc)), if (true) // expected-error {{directive '#pragma… in main()
123 …#pragma omp parallel sections if (argc argc) // expected-error {{expected ')'}} expected-note {{to… in main()
131 …#pragma omp parallel sections if(if(tmain(argc, argv) // expected-error {{expected expression}} ex… in main()
139 …#pragma omp parallel sections if(parallel : argc // expected-error {{expected ')'}} expected-note … in main()
143 #pragma omp parallel sections if(parallel : argc) in main()
147 …#pragma omp parallel sections if(parallel : argc) if (for:argc) // expected-error {{directive name… in main()
151 …#pragma omp parallel sections if(parallel : argc) if (parallel:argc) // expected-error {{directive… in main()
155 …#pragma omp parallel sections if(parallel : argc) if (argc) // expected-error {{no more 'if' claus… in main()
160 return tmain(argc, argv); in main()