/external/clang/test/OpenMP/ |
D | declare_simd_messages.cpp | 3 // expected-error@+1 {{expected an OpenMP directive}} 6 // expected-error@+2 {{'#pragma omp declare simd' can only be applied to functions}} 9 // expected-error@+2 {{'#pragma omp declare simd' can only be applied to functions}} 15 // expected-error@+2 {{expected an OpenMP directive}} expected-error@+1 {{function declaration is e… 19 // expected-error@+3 {{function declaration is expected after 'declare simd' directive}} 20 // expected-error@+1 {{function declaration is expected after 'declare simd' directive}} 26 // expected-error@+3 {{function declaration is expected after 'declare simd' directive}} 27 // expected-error@+1 {{function declaration is expected after 'declare simd' directive}} 33 // expected-error@+1 {{single declaration is expected after 'declare simd' directive}} 35 // expected-note@+1 {{declared here}} [all …]
|
D | target_update_depend_messages.cpp | 10 struct S1; // expected-note 2 {{declared here}} 25 #pragma omp depend target update to(z) // expected-error{{expected an OpenMP directive}} in tmain() 26 #pragma omp depend(out:argc) target update to(z) // expected-error{{expected an OpenMP directive}} in tmain() 27 …end(in:argc) update to(z) // expected-error{{unexpected OpenMP clause 'update' in directive '#prag… in tmain() 30 #pragma omp target update to(z) depend // expected-error {{expected '(' after 'depend'}} in tmain() 31 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-error {{expe… in tmain() 32 …p target update to(z) depend() // expected-error {{expected 'in', 'out' or 'inout' in OpenMP claus… in tmain() 33 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{mi… in tmain() 34 …#pragma omp target update to(z) depend(source : argc) // expected-error {{expected 'in', 'out' or … in tmain() 35 …#pragma omp target update to(z) depend(source) // expected-error {{expected expression}} expected-… in tmain() [all …]
|
D | target_parallel_defaultmap_messages.cpp | 8 #pragma omp target parallel defaultmap // expected-error {{expected '(' after 'defaultmap'}} in tmain() 10 …rallel defaultmap ( // expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}} expected… in tmain() 12 …#pragma omp target parallel defaultmap () // expected-error {{expected 'tofrom' in OpenMP clause '… in tmain() 14 …expected-error {{expected ')'}} expected-note {{to match this '('}} expected-warning {{missing ':'… in tmain() 16 …rallel defaultmap (tofrom: // expected-error {{expected ')'}} expected-note {{to match this '('}} … in tmain() 18 …allel defaultmap (tofrom) // expected-warning {{missing ':' after defaultmap modifier - ignoring}}… in tmain() 20 …#pragma omp target parallel defaultmap (tofrom scalar) // expected-warning {{missing ':' after def… in tmain() 22 …expected-error {{expected ')'}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}… in tmain() 24 …defaultmap (scalar: // expected-error {{expected ')'}} expected-error {{expected 'tofrom' in OpenM… in tmain() 26 …expected-error {{expected ')'}} expected-warning {{missing ':' after defaultmap modifier - ignorin… in tmain() [all …]
|
D | target_defaultmap_messages.cpp | 8 #pragma omp target defaultmap // expected-error {{expected '(' after 'defaultmap'}} in tmain() 10 …target defaultmap ( // expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}} expected… in tmain() 12 …#pragma omp target defaultmap () // expected-error {{expected 'tofrom' in OpenMP clause 'defaultma… in tmain() 14 …expected-error {{expected ')'}} expected-note {{to match this '('}} expected-warning {{missing ':'… in tmain() 16 …target defaultmap (tofrom: // expected-error {{expected ')'}} expected-note {{to match this '('}} … in tmain() 18 …arget defaultmap (tofrom) // expected-warning {{missing ':' after defaultmap modifier - ignoring}}… in tmain() 20 …#pragma omp target defaultmap (tofrom scalar) // expected-warning {{missing ':' after defaultmap m… in tmain() 22 …expected-error {{expected ')'}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}… in tmain() 24 …defaultmap (scalar: // expected-error {{expected ')'}} expected-error {{expected 'tofrom' in OpenM… in tmain() 26 …expected-error {{expected ')'}} expected-warning {{missing ':' after defaultmap modifier - ignorin… in tmain() [all …]
|
D | simd_misc_messages.c | 3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp simd'}} 6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp simd'}} 9 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp simd'}} 18 // expected-error@+2 {{statement after '#pragma omp simd' must be a for loop}} in test_no_clause() 33 goto L1; // expected-error {{use of undeclared label 'L1'}} in test_branch_protected_scope() 35 return; // expected-error {{cannot return from OpenMP region}} in test_branch_protected_scope() 45 goto L2; // expected-error {{use of undeclared label 'L2'}} in test_branch_protected_scope() 52 // expected-warning@+1 {{extra tokens at the end of '#pragma omp simd' are ignored}} in test_invalid_clause() 61 // expected-warning@+1 {{extra tokens at the end of '#pragma omp simd' are ignored}} in test_non_identifiers() 65 // expected-error@+2 {{unexpected OpenMP clause 'firstprivate' in directive '#pragma omp simd'}} in test_non_identifiers() [all …]
|
D | parallel_if_messages.cpp | 10 struct S1; // expected-note {{declared here}} 12 template <class T, class S> // expected-note {{declared here}} 14 #pragma omp parallel if // expected-error {{expected '(' after 'if'}} in tmain() 15 …#pragma omp parallel if ( // expected-error {{expected expression}} expected-error {{expected ')'}… in tmain() 16 #pragma omp parallel if () // expected-error {{expected expression}} in tmain() 17 …#pragma omp parallel if (argc // expected-error {{expected ')'}} expected-note {{to match this '('… in tmain() 18 …#pragma omp parallel if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp para… in tmain() 20 …#pragma omp parallel if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp para… in tmain() 21 #pragma omp parallel if (S) // expected-error {{'S' does not refer to a value}} in tmain() 22 …#pragma omp parallel if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match th… in tmain() [all …]
|
D | target_enter_data_depend_messages.cpp | 10 struct S1; // expected-note {{declared here}} expected-note {{declared here}} 25 #pragma omp target enter data map(to: i) depend // expected-error {{expected '(' after 'depend'}} in tmain() 27 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-error {{expe… in tmain() 29 …nter data map(to: i) depend () // expected-error {{expected 'in', 'out' or 'inout' in OpenMP claus… in tmain() 31 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{mi… in tmain() 33 …#pragma omp target enter data map(to: i) depend (source : argc) // expected-error {{expected 'in',… in tmain() 35 … omp target enter data map(to: i) depend (source) // expected-error {{expected expression}} expect… in tmain() 37 …#pragma omp target enter data map(to: i) depend (in : argc)) // expected-warning {{extra tokens at… in tmain() 39 #pragma omp target enter data map(to: i) depend (out: ) // expected-error {{expected expression}} in tmain() 41 …expected-error {{expected variable name, array element or array section}} expected-warning {{missi… in tmain() [all …]
|
D | target_exit_data_depend_messages.cpp | 10 struct S1; // expected-note {{declared here}} expected-note {{declared here}} 25 #pragma omp target exit data map(from: i) depend // expected-error {{expected '(' after 'depend'}} in tmain() 27 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-error {{expe… in tmain() 29 …it data map(from: i) depend () // expected-error {{expected 'in', 'out' or 'inout' in OpenMP claus… in tmain() 31 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{mi… in tmain() 33 …#pragma omp target exit data map(from: i) depend (source : argc) // expected-error {{expected 'in'… in tmain() 35 …omp target exit data map(from: i) depend (source) // expected-error {{expected expression}} expect… in tmain() 37 …#pragma omp target exit data map(from: i) depend (in : argc)) // expected-warning {{extra tokens a… in tmain() 39 #pragma omp target exit data map(from: i) depend (out: ) // expected-error {{expected expression}} in tmain() 41 …expected-error {{expected variable name, array element or array section}} expected-warning {{missi… in tmain() [all …]
|
D | for_simd_misc_messages.c | 3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp for simd'}} 6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp for simd'}} 15 // expected-error@+2 {{statement after '#pragma omp for simd' must be a for loop}} in test_no_clause() 31 goto L1; // expected-error {{use of undeclared label 'L1'}} in test_branch_protected_scope() 33 return; // expected-error {{cannot return from OpenMP region}} in test_branch_protected_scope() 43 goto L2; // expected-error {{use of undeclared label 'L2'}} in test_branch_protected_scope() 51 // expected-warning@+1 {{extra tokens at the end of '#pragma omp for simd' are ignored}} in test_invalid_clause() 61 // expected-warning@+1 {{extra tokens at the end of '#pragma omp for simd' are ignored}} in test_non_identifiers() 66 // expected-warning@+1 {{extra tokens at the end of '#pragma omp for simd' are ignored}} in test_non_identifiers() 72 // expected-warning@+1 {{extra tokens at the end of '#pragma omp for simd' are ignored}} in test_non_identifiers() [all …]
|
D | parallel_for_simd_misc_messages.c | 3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel for simd'}} 6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp parallel for simd'}} 15 // expected-error@+2 {{statement after '#pragma omp parallel for simd' must be a for loop}} in test_no_clause() 31 goto L1; // expected-error {{use of undeclared label 'L1'}} in test_branch_protected_scope() 33 return; // expected-error {{cannot return from OpenMP region}} in test_branch_protected_scope() 43 goto L2; // expected-error {{use of undeclared label 'L2'}} in test_branch_protected_scope() 51 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel for simd' are ignored}} in test_invalid_clause() 61 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel for simd' are ignored}} in test_non_identifiers() 66 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel for simd' are ignored}} in test_non_identifiers() 72 // expected-warning@+1 {{extra tokens at the end of '#pragma omp parallel for simd' are ignored}} in test_non_identifiers() [all …]
|
D | cancel_if_messages.cpp | 10 struct S1; // expected-note {{declared here}} 12 template <class T, class S> // expected-note {{declared here}} 16 #pragma omp cancel parallel if // expected-error {{expected '(' after 'if'}} in tmain() 17 …#pragma omp cancel parallel if ( // expected-error {{expected expression}} expected-error {{expect… in tmain() 18 #pragma omp cancel parallel if () // expected-error {{expected expression}} in tmain() 19 …#pragma omp cancel parallel if (argc // expected-error {{expected ')'}} expected-note {{to match t… in tmain() 20 …#pragma omp cancel parallel if (argc)) // expected-warning {{extra tokens at the end of '#pragma o… in tmain() 22 …#pragma omp cancel parallel if (foobool(argc)), if (true) // expected-error {{directive '#pragma o… in tmain() 23 #pragma omp cancel parallel if (S) // expected-error {{'S' does not refer to a value}} in tmain() 24 …#pragma omp cancel parallel if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to m… in tmain() [all …]
|
D | target_parallel_for_defaultmap_messages.cpp | 9 #pragma omp target parallel for defaultmap // expected-error {{expected '(' after 'defaultmap'}} in tmain() 11 …el for defaultmap ( // expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}} expected… in tmain() 13 …#pragma omp target parallel for defaultmap () // expected-error {{expected 'tofrom' in OpenMP clau… in tmain() 15 …expected-error {{expected ')'}} expected-note {{to match this '('}} expected-warning {{missing ':'… in tmain() 17 …el for defaultmap (tofrom: // expected-error {{expected ')'}} expected-note {{to match this '('}} … in tmain() 19 …l for defaultmap (tofrom) // expected-warning {{missing ':' after defaultmap modifier - ignoring}}… in tmain() 21 …#pragma omp target parallel for defaultmap (tofrom scalar) // expected-warning {{missing ':' after… in tmain() 23 …expected-error {{expected ')'}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}… in tmain() 25 …defaultmap (scalar: // expected-error {{expected ')'}} expected-error {{expected 'tofrom' in OpenM… in tmain() 27 …expected-error {{expected ')'}} expected-warning {{missing ':' after defaultmap modifier - ignorin… in tmain() [all …]
|
D | declare_reduction_messages.c | 3 int temp; // expected-note 6 {{'temp' declared here}} 5 …clare reduction // expected-error {{expected '(' afte… 6 …clare reduction { // expected-error {{expected '(' afte… 7 …clare reduction( // expected-error {{expected identifi… 8 …clare reduction(# // expected-error {{expected identifi… 9 …clare reduction(/ // expected-error {{expected identifi… 10 …p declare reduction(+ // expected-error {{expected ':'}} 11 …clare reduction(for // expected-error {{expected identifi… 12 … // expected-error {{expected identifier or one of the following operators: '+', '-', '*', '&', '… 13 …eclare reduction(oper: // expected-error {{expected a type}} [all …]
|
D | distribute_simd_misc_messages.c | 3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute simd'}} 6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute simd'}} 9 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute simd'}} 22 // expected-error@+2 {{statement after '#pragma omp distribute simd' must be a for loop}} in test_no_clause() 39 goto L1; // expected-error {{use of undeclared label 'L1'}} in test_branch_protected_scope() 41 return; // expected-error {{cannot return from OpenMP region}} in test_branch_protected_scope() 51 goto L2; // expected-error {{use of undeclared label 'L2'}} in test_branch_protected_scope() 60 // expected-warning@+1 {{extra tokens at the end of '#pragma omp distribute simd' are ignored}} in test_invalid_clause() 71 // expected-warning@+1 {{extra tokens at the end of '#pragma omp distribute simd' are ignored}} in test_non_identifiers() 78 // expected-warning@+1 {{extra tokens at the end of '#pragma omp distribute simd' are ignored}} in test_non_identifiers() [all …]
|
D | task_if_messages.cpp | 10 struct S1; // expected-note {{declared here}} 12 template <class T, class S> // expected-note {{declared here}} 14 #pragma omp task if // expected-error {{expected '(' after 'if'}} in tmain() 15 …#pragma omp task if ( // expected-error {{expected expression}} expected-error {{expected ')'}} ex… in tmain() 16 #pragma omp task if () // expected-error {{expected expression}} in tmain() 17 #pragma omp task if (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} in tmain() 18 …#pragma omp task if (argc)) // expected-warning {{extra tokens at the end of '#pragma omp task' ar… in tmain() 20 …#pragma omp task if (foobool(argc)), if (true) // expected-error {{directive '#pragma omp task' ca… in tmain() 21 #pragma omp task if (S) // expected-error {{'S' does not refer to a value}} in tmain() 22 …#pragma omp task if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{to match this '… in tmain() [all …]
|
D | task_depend_messages.cpp | 10 struct S1; // expected-note {{declared here}} 21 auto arr = x; // expected-error {{use of undeclared identifier 'x'}} in main() 23 #pragma omp task depend // expected-error {{expected '(' after 'depend'}} in main() 24 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-error {{expe… in main() 25 …#pragma omp task depend () // expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'd… in main() 26 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{mi… in main() 27 …#pragma omp task depend (source : argc) // expected-error {{expected 'in', 'out' or 'inout' in Ope… in main() 28 …#pragma omp task depend (source) // expected-error {{expected expression}} expected-warning {{miss… in main() 29 …#pragma omp task depend (in : argc)) // expected-warning {{extra tokens at the end of '#pragma omp… in main() 30 #pragma omp task depend (out: ) // expected-error {{expected expression}} in main() [all …]
|
D | distribute_parallel_for_simd_misc_messages.c | 3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute parallel for simd'}} 6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute parallel for simd'}} 15 // expected-error@+2 {{statement after '#pragma omp distribute parallel for simd' must be a for loo… in test_no_clause() 32 goto L1; // expected-error {{use of undeclared label 'L1'}} in test_branch_protected_scope() 34 return; // expected-error {{cannot return from OpenMP region}} in test_branch_protected_scope() 44 goto L2; // expected-error {{use of undeclared label 'L2'}} in test_branch_protected_scope() 53 // expected-warning@+1 {{extra tokens at the end of '#pragma omp distribute parallel for simd' are … in test_invalid_clause() 64 // expected-warning@+1 {{extra tokens at the end of '#pragma omp distribute parallel for simd' are … in test_non_identifiers() 70 // expected-warning@+1 {{extra tokens at the end of '#pragma omp distribute parallel for simd' are … in test_non_identifiers() 77 // expected-warning@+1 {{extra tokens at the end of '#pragma omp distribute parallel for simd' are … in test_non_identifiers() [all …]
|
D | target_update_if_messages.cpp | 10 struct S1; // expected-note {{declared here}} 12 template <class T, class S> // expected-note {{declared here}} 15 #pragma omp target update to(n) if // expected-error {{expected '(' after 'if'}} in tmain() 16 …ma omp target update from(n) if ( // expected-error {{expected expression}} expected-error {{expec… in tmain() 17 #pragma omp target update to(n) if () // expected-error {{expected expression}} in tmain() 18 #pragma omp target update from(n) if (argc // expected-error {{expected ')'}} expected-note {{to ma… in tmain() 19 #pragma omp target update to(n) if (argc)) // expected-warning {{extra tokens at the end of '#pragm… in tmain() 21 #pragma omp target update to(n) if (foobool(argc)), if (true) // expected-error {{directive '#pragm… in tmain() 22 #pragma omp target update from(n) if (S) // expected-error {{'S' does not refer to a value}} in tmain() 23 #pragma omp target update to(n) if (argv[1]=2) // expected-error {{expected ')'}} expected-note {{t… in tmain() [all …]
|
D | target_parallel_for_simd_defaultmap_messages.cpp | 9 …#pragma omp target parallel for simd defaultmap // expected-error {{expected '(' after 'defaultmap… in tmain() 11 …r simd defaultmap ( // expected-error {{expected 'tofrom' in OpenMP clause 'defaultmap'}} expected… in tmain() 13 …#pragma omp target parallel for simd defaultmap () // expected-error {{expected 'tofrom' in OpenMP… in tmain() 15 …expected-error {{expected ')'}} expected-note {{to match this '('}} expected-warning {{missing ':'… in tmain() 17 …r simd defaultmap (tofrom: // expected-error {{expected ')'}} expected-note {{to match this '('}} … in tmain() 19 … simd defaultmap (tofrom) // expected-warning {{missing ':' after defaultmap modifier - ignoring}}… in tmain() 21 …#pragma omp target parallel for simd defaultmap (tofrom scalar) // expected-warning {{missing ':' … in tmain() 23 …expected-error {{expected ')'}} expected-error {{expected 'scalar' in OpenMP clause 'defaultmap'}}… in tmain() 25 …defaultmap (scalar: // expected-error {{expected ')'}} expected-error {{expected 'tofrom' in OpenM… in tmain() 27 …expected-error {{expected ')'}} expected-warning {{missing ':' after defaultmap modifier - ignorin… in tmain() [all …]
|
D | declare_reduction_messages.cpp | 3 int temp; // expected-note 7 {{'temp' declared here}} 5 …clare reduction // expected-error {{expected '(' afte… 6 …clare reduction { // expected-error {{expected '(' afte… 7 …clare reduction( // expected-error {{expected identifi… 8 …clare reduction(# // expected-error {{expected identifi… 9 …clare reduction(/ // expected-error {{expected identifi… 10 …p declare reduction(+ // expected-error {{expected ':'}} 11 …clare reduction(operator // expected-error {{expected identifi… 12 … // expected-error {{expected identifier or one of the following operators: '+', '-', '*', '&', '… 13 …eclare reduction(oper: // expected-error {{expected a type}} [all …]
|
D | target_parallel_depend_messages.cpp | 10 struct S1; // expected-note {{declared here}} 21 auto arr = x; // expected-error {{use of undeclared identifier 'x'}} in main() 23 #pragma omp target parallel depend // expected-error {{expected '(' after 'depend'}} in main() 25 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-error {{expe… in main() 27 … omp target parallel depend () // expected-error {{expected 'in', 'out' or 'inout' in OpenMP claus… in main() 29 …expected-error {{expected 'in', 'out' or 'inout' in OpenMP clause 'depend'}} expected-warning {{mi… in main() 31 …#pragma omp target parallel depend (source : argc) // expected-error {{expected 'in', 'out' or 'in… in main() 33 …#pragma omp target parallel depend (source) // expected-error {{expected expression}} expected-war… in main() 35 …#pragma omp target parallel depend (in : argc)) // expected-warning {{extra tokens at the end of '… in main() 37 #pragma omp target parallel depend (out: ) // expected-error {{expected expression}} in main() [all …]
|
/external/clang/test/CodeGen/ |
D | builtins-systemz-zvector-error.c | 61 len = __lcbb(cptr, idx); // expected-error {{no matching function}} in test_core() 62 … // expected-note@vecintrin.h:* {{must be a constant power of 2 from 64 to 4096}} in test_core() 63 len = __lcbb(cptr, 200); // expected-error {{no matching function}} in test_core() 64 … // expected-note@vecintrin.h:* {{must be a constant power of 2 from 64 to 4096}} in test_core() 65 len = __lcbb(cptr, 32); // expected-error {{no matching function}} in test_core() 66 … // expected-note@vecintrin.h:* {{must be a constant power of 2 from 64 to 4096}} in test_core() 67 len = __lcbb(cptr, 8192); // expected-error {{no matching function}} in test_core() 68 … // expected-note@vecintrin.h:* {{must be a constant power of 2 from 64 to 4096}} in test_core() 70 vsl = vec_permi(vsl, vsl, idx); // expected-error {{no matching function}} in test_core() 71 // expected-note@vecintrin.h:* 3 {{candidate function not viable}} in test_core() [all …]
|
/external/e2fsprogs/tests/j_long_revoke_trans_mcsum_64bit/ |
D | expect | 22 Found expected sequence 1, type 1 (descriptor block) at block 1 23 Found expected sequence 1, type 1 (descriptor block) at block 64 24 Found expected sequence 1, type 1 (descriptor block) at block 127 25 Found expected sequence 1, type 1 (descriptor block) at block 190 26 Found expected sequence 1, type 1 (descriptor block) at block 253 27 Found expected sequence 1, type 1 (descriptor block) at block 316 28 Found expected sequence 1, type 1 (descriptor block) at block 379 29 Found expected sequence 1, type 1 (descriptor block) at block 442 30 Found expected sequence 1, type 1 (descriptor block) at block 505 31 Found expected sequence 1, type 1 (descriptor block) at block 568 [all …]
|
/external/e2fsprogs/tests/j_long_revoke_trans_mcsum_32bit/ |
D | expect | 23 Found expected sequence 1, type 1 (descriptor block) at block 1 24 Found expected sequence 1, type 1 (descriptor block) at block 64 25 Found expected sequence 1, type 1 (descriptor block) at block 127 26 Found expected sequence 1, type 1 (descriptor block) at block 190 27 Found expected sequence 1, type 1 (descriptor block) at block 253 28 Found expected sequence 1, type 1 (descriptor block) at block 316 29 Found expected sequence 1, type 1 (descriptor block) at block 379 30 Found expected sequence 1, type 1 (descriptor block) at block 442 31 Found expected sequence 1, type 1 (descriptor block) at block 505 32 Found expected sequence 1, type 1 (descriptor block) at block 568 [all …]
|
/external/clang/test/Parser/ |
D | switch-recovery.cpp | 7 switch (a) { // expected-error{{use of undeclared identifier 'a'}} in foo() 13 case 17 // expected-error{{expected ':' after 'case'}} in foo() 16 default // expected-error{{expected ':' after 'default'}} in foo() 24 switch (x) { // expected-warning {{enumeration value 'Xb' not handled in switch}} in test2() 25 case Xa; // expected-error {{expected ':' after 'case'}} in test2() 30 default; // expected-error {{expected ':' after 'default'}} in test2() 38 2: return 1; // expected-error {{expected 'case' keyword before expression}} in test3() 46 1: return -1; // expected-error {{expected 'case' keyword before expression}} in test4() 54 4:5:6:7: return 2; // expected-error 4{{expected 'case' keyword before expression}} in test5() 72 5: // expected-error {{expected 'case' keyword before expression}} in test6() [all …]
|