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
17 #pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} in tmain()
18 …#pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target… in tmain()
19 #pragma omp target if (argc > 0 ? argv[1] : argv[2]) in tmain()
20 …#pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target… in tmain()
23 …#pragma omp target if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this… in tmain()
24 #pragma omp target if(argc) in tmain()
26 …#pragma omp target if(target : argc // expected-error {{expected ')'}} expected-note {{to match th… in tmain()
27 #pragma omp target if(target : argc) in tmain()
28 …#pragma omp target if(target : argc) if (for:argc) // expected-error {{directive name modifier 'fo… in tmain()
29 …#pragma omp target if(target : argc) if (target:argc) // expected-error {{directive '#pragma omp t… in tmain()
30 …#pragma omp target if(target : argc) if (argc) // expected-error {{no more 'if' clause is allowed}… in tmain()
36 int main(int argc, char **argv) { in main() argument
40 #pragma omp target if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} in main()
41 …#pragma omp target if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target… in main()
42 #pragma omp target if (argc > 0 ? argv[1] : argv[2]) in main()
43 …#pragma omp target if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp target… in main()
46 …#pragma omp target if (argc argc) // expected-error {{expected ')'}} expected-note {{to match this… in main()
48 …#pragma omp target if(if(tmain(argc, argv) // expected-error {{expected expression}} expected-erro… in main()
50 …#pragma omp target if(target : argc // expected-error {{expected ')'}} expected-note {{to match th… in main()
51 #pragma omp target if(target : argc) in main()
52 …#pragma omp target if(target : argc) if (for:argc) // expected-error {{directive name modifier 'fo… in main()
53 …#pragma omp target if(target : argc) if (target:argc) // expected-error {{directive '#pragma omp t… in main()
54 …#pragma omp target if(target : argc) if (argc) // expected-error {{no more 'if' clause is allowed}… in main()
57 return tmain(argc, argv); in main()