| /external/lzma/C/ |
| Compiler.h | 11 /* #pragma warning(disable : 4115) // '_RPC_ASYNC_STATE' : named type definition in parentheses */
12 #pragma warning(disable : 4201) // nonstandard extension used : nameless struct/union
13 #pragma warning(disable : 4214) // nonstandard extension used : bit field types other than int
17 #pragma warning(disable : 4996) // This function or variable may be unsafe
19 #pragma warning(disable : 4511) // copy constructor could not be generated
20 #pragma warning(disable : 4512) // assignment operator could not be generated
21 #pragma warning(disable : 4514) // unreferenced inline function has been removed
22 #pragma warning(disable : 4702) // unreachable code
23 #pragma warning(disable : 4710) // not inlined
24 #pragma warning(disable : 4786) // identifier was truncated to '255' characters in the debug information [all...] |
| /external/clang/test/OpenMP/ |
| distribute_parallel_for_firstprivate_messages.cpp | 61 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}} 69 #pragma omp target 70 #pragma omp teams 71 #pragma omp distribute parallel for firstprivate // expected-error {{expected '(' after 'firstprivate'}} 74 #pragma omp target 75 #pragma omp teams 76 #pragma omp distribute parallel for firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 79 #pragma omp target 80 #pragma omp teams 81 #pragma omp distribute parallel for firstprivate() // expected-error {{expected expression} [all...] |
| distribute_parallel_for_simd_firstprivate_messages.cpp | 61 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}} 69 #pragma omp target 70 #pragma omp teams 71 #pragma omp distribute parallel for simd firstprivate // expected-error {{expected '(' after 'firstprivate'}} 74 #pragma omp target 75 #pragma omp teams 76 #pragma omp distribute parallel for simd firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 79 #pragma omp target 80 #pragma omp teams 81 #pragma omp distribute parallel for simd firstprivate() // expected-error {{expected expression} [all...] |
| distribute_simd_firstprivate_messages.cpp | 61 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}} 69 #pragma omp target 70 #pragma omp teams 71 #pragma omp distribute simd firstprivate // expected-error {{expected '(' after 'firstprivate'}} 74 #pragma omp target 75 #pragma omp teams 76 #pragma omp distribute simd firstprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 79 #pragma omp target 80 #pragma omp teams 81 #pragma omp distribute simd firstprivate() // expected-error {{expected expression} [all...] |
| task_final_messages.cpp | 14 #pragma omp task final // expected-error {{expected '(' after 'final'}} 15 #pragma omp task final ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 16 #pragma omp task final () // expected-error {{expected expression}} 17 #pragma omp task final (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 18 #pragma omp task final (argc)) // expected-warning {{extra tokens at the end of '#pragma omp task' are ignored}} 19 #pragma omp task final (argc > 0 ? argv[1] : argv[2]) 20 #pragma omp task final (foobool(argc)), final (true) // expected-error {{directive '#pragma omp task' cannot contain more than one 'final' clause}} 21 #pragma omp task final (S) // expected-error {{'S' does not refer to a value} [all...] |
| distribute_parallel_for_simd_misc_messages.c | 3 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute parallel for simd'}} 4 #pragma omp distribute parallel for simd 6 // expected-error@+1 {{unexpected OpenMP directive '#pragma omp distribute parallel for simd'}} 7 #pragma omp distribute parallel for simd foo 11 #pragma omp distribute parallel for simd 15 // expected-error@+2 {{statement after '#pragma omp distribute parallel for simd' must be a for loop}} 16 #pragma omp distribute parallel for simd 27 #pragma omp target 28 #pragma omp teams 29 #pragma omp distribute parallel for sim [all...] |
| teams_reduction_messages.cpp | 71 #pragma omp threadprivate(h) // expected-note 2 {{defined as threadprivate or thread local}} 84 #pragma omp target 85 #pragma omp teams reduction // expected-error {{expected '(' after 'reduction'}} 87 #pragma omp target 88 #pragma omp teams reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp teams' are ignored}} 90 #pragma omp target 91 #pragma omp teams reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}} 93 #pragma omp target 94 #pragma omp teams reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} ex (…) [all...] |
| target_parallel_messages.cpp | 9 #pragma omp threadprivate(pvt) 11 #pragma omp target parallel // expected-error {{unexpected OpenMP directive '#pragma omp target parallel'}} 14 #pragma omp target parallel { // expected-warning {{extra tokens at the end of '#pragma omp target parallel' are ignored}} 16 #pragma omp target parallel ( // expected-warning {{extra tokens at the end of '#pragma omp target parallel' are ignored}} 18 #pragma omp target parallel [ // expected-warning {{extra tokens at the end of '#pragma omp target parallel' are ignored}} 20 #pragma omp target parallel ] // expected-warning {{extra tokens at the end of '#pragma omp target paralle (…) [all...] |
| task_messages.cpp | 6 #pragma omp task // expected-error {{unexpected OpenMP directive '#pragma omp task'}} 36 #pragma omp task 39 #pragma omp task default(none) 40 #pragma omp task default(shared) 42 #pragma omp task default(none) 43 #pragma omp task 46 #pragma omp task 47 #pragma omp task 50 #pragma omp task default(shared [all...] |
| distribute_parallel_for_copyin_messages.cpp | 51 #pragma omp threadprivate(h, k, l, m) 55 #pragma omp threadprivate(x) 64 #pragma omp target 65 #pragma omp teams 66 #pragma omp distribute parallel for copyin // expected-error {{expected '(' after 'copyin'}} 69 #pragma omp target 70 #pragma omp teams 71 #pragma omp distribute parallel for copyin( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 74 #pragma omp target 75 #pragma omp team [all...] |
| distribute_parallel_for_simd_copyin_messages.cpp | 51 #pragma omp threadprivate(h, k, l, m) 55 #pragma omp threadprivate(x) 64 #pragma omp target 65 #pragma omp teams 66 #pragma omp distribute parallel for simd copyin // expected-error {{expected '(' after 'copyin'}} 69 #pragma omp target 70 #pragma omp teams 71 #pragma omp distribute parallel for simd copyin( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 74 #pragma omp target 75 #pragma omp team [all...] |
| threadprivate_messages.cpp | 4 #pragma omp threadprivate // expected-error {{expected '(' after 'threadprivate'}} 5 #pragma omp threadprivate( // expected-error {{expected identifier}} expected-error {{expected ')'}} expected-note {{to match this '('}} 6 #pragma omp threadprivate() // expected-error {{expected identifier}} 7 #pragma omp threadprivate(1) // expected-error {{expected unqualified-id}} 13 #pragma omp threadprivate(1) // expected-error {{expected unqualified-id}} 19 #pragma omp threadprivate(a) 20 #pragma omp threadprivate(u) // expected-error {{use of undeclared identifier 'u'}} 21 #pragma omp threadprivate(d, a) 24 #pragma omp threadprivate(l)) // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' are ignored} [all...] |
| parallel_shared_messages.cpp | 45 #pragma omp threadprivate(h) // expected-note {{defined as threadprivate or thread local}} 49 #pragma omp threadprivate(x) // expected-note {{defined as threadprivate or thread local}} 62 #pragma omp parallel shared // expected-error {{expected '(' after 'shared'}} 63 #pragma omp parallel shared ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 64 #pragma omp parallel shared () // expected-error {{expected expression}} 65 #pragma omp parallel shared (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 66 #pragma omp parallel shared (argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 67 #pragma omp parallel shared (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} 68 #pragma omp parallel shared (argc) 69 #pragma omp parallel shared (S1) // expected-error {{'S1' does not refer to a value} [all...] |
| target_device_messages.cpp | 13 #pragma omp target device // expected-error {{expected '(' after 'device'}} 15 #pragma omp target device ( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} 17 #pragma omp target device () // expected-error {{expected expression}} 19 #pragma omp target device (argc // expected-error {{expected ')'}} expected-note {{to match this '('}} 21 #pragma omp target device (argc)) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}} 23 #pragma omp target device (argc > 0 ? argv[1] : argv[2]) // expected-error {{expression must have integral or unscoped enumeration type, not 'char *'}} 25 #pragma omp target device (argc + argc) 27 #pragma omp target device (argc), device (argc+1) // expected-error {{directive '#pragma omp target' cannot contain more than one 'device' clause} [all...] |
| target_enter_data_map_messages.c | 7 #pragma omp target enter data // expected-error {{expected at least one map clause for '#pragma omp target enter data'}} 9 #pragma omp target enter data map(r) // expected-error {{map type must be specified for '#pragma omp target enter data'}} 10 #pragma omp target enter data map(tofrom: r) // expected-error {{map type 'tofrom' is not allowed for '#pragma omp target enter data'}} 12 #pragma omp target enter data map(always, to: r) 13 #pragma omp target enter data map(always, alloc: r) 14 #pragma omp target enter data map(always, from: r) // expected-error {{map type 'from' is not allowed for '#pragma omp target enter data'} [all...] |
| nesting_of_regions.cpp | 9 #pragma omp parallel 10 #pragma omp for 13 #pragma omp parallel 14 #pragma omp simd 17 #pragma omp parallel 18 #pragma omp for simd 21 #pragma omp parallel 22 #pragma omp sections 26 #pragma omp parallel 27 #pragma omp section // expected-error {{'omp section' directive must be closely nested to a sections regio (…) [all...] |
| barrier_ast_print.cpp | 14 #pragma omp barrier 17 #pragma omp barrier 20 #pragma omp barrier 21 #pragma omp barrier 27 // CHECK-NEXT: #pragma omp barrier 29 // CHECK-NEXT: #pragma omp barrier 31 // CHECK-NEXT: #pragma omp barrier 34 // CHECK-NEXT: #pragma omp barrier 37 // CHECK-NEXT: #pragma omp barrier 38 // CHECK-NEXT: #pragma omp barrie [all...] |
| target_enter_data_nowait_messages.cpp | 6 #pragma omp nowait target enter data map(to: i) // expected-error {{expected an OpenMP directive}} 7 #pragma omp target nowait enter data map(to: i) // expected-warning {{extra tokens at the end of '#pragma omp target' are ignored}} 8 #pragma omp target enter nowait data map(to: i) // expected-error {{expected an OpenMP directive}} 9 #pragma omp target enter data nowait() map(to: i) // expected-warning {{extra tokens at the end of '#pragma omp target enter data' are ignored}} expected-error {{expected at least one map clause for '#pragma omp target enter data'}} 10 #pragma omp target enter data map(to: i) nowait( // expected-warning {{extra tokens at the end of '#pragma omp target enter data' are ignored}} 11 #pragma omp target enter data map(to: i) nowait (argc)) // expected-warning {{extra tokens at the end of ' (…) [all...] |
| /external/clang/test/Parser/ |
| pragma-loop.cpp | 8 #pragma clang loop vectorize_width(V) interleave_count(I) 13 #pragma clang loop vectorize_width(V + 4) interleave_count(I + 4) 21 /* expected-error {{invalid value '-1'; must be positive}} */ #pragma clang loop vectorize_width(V) 26 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop vectorize_width(V / 2) 34 /* expected-error {{invalid value '-1'; must be positive}} */ #pragma clang loop interleave_count(I) 39 /* expected-error {{invalid value '0'; must be positive}} */ #pragma clang loop interleave_count(2 % I) 47 /* expected-error {{invalid argument of type 'char'; expected an integer type}} */ #pragma clang loop vectorize_width(V) 55 /* expected-error {{invalid argument of type 'bool'; expected an integer type}} */ #pragma clang loop vectorize_width(V) 63 /* expected-error {{use of undeclared identifier 'Vec'}} */ #pragma clang loop vectorize_width(Vec) interleave_count(I) 64 /* expected-error {{use of undeclared identifier 'Int'}} */ #pragma clang loop vectorize_width(V) interleave_count(Int [all...] |
| /external/clang/test/Lexer/ |
| pragma-message.c | 1 /* Test pragma message directive from 6 // #pragma message(messagestring) 8 // #pragma message messagestring 13 #pragma message(":O I'm a message! " STRING(__LINE__)) // expected-warning {{:O I'm a message! 13}} 14 #pragma message ":O gcc accepts this! " STRING(__LINE__) // expected-warning {{:O gcc accepts this! 14}} 16 #pragma message(invalid) // expected-error {{expected string literal in pragma message}} 18 // GCC supports a similar pragma, #pragma GCC warning (which generates a warning 19 // message) and #pragma GCC error (which generates an error message) [all...] |
| /external/clang/test/Sema/ |
| pragma-pack-apple.c | 2 // RUN: %clang_cc1 -fsyntax-only -fapple-pragma-pack %s 2>&1 | FileCheck -check-prefix=CHECK-APPLE %s 4 #pragma pack(push,1) 5 #pragma pack(2) 6 #pragma pack() 7 #pragma pack(show)
|
| pragma-unused.c | 5 #pragma unused(x) 6 #pragma unused(y, z) 9 #pragma unused w // expected-warning{{missing '(' after '#pragma unused' - ignoring}} 14 #pragma unused(x,) // expected-warning{{expected '#pragma unused' argument to be a variable name}} 15 #pragma unused() // expected-warning{{expected '#pragma unused' argument to be a variable name}} 19 #pragma unused(x) // expected-warning{{undeclared variable 'x' used as an argument for '#pragma unused'} [all...] |
| /frameworks/compile/slang/tests/F_reflection3264_reduce_mismatch_name_noexp/ |
| reflection3264_reduce_mismatch_name_noexp.rs | 0 #pragma version(1) 2 #pragma rs java_package_name(foo) 10 #pragma rs reduce(a64) accumulator(accumGood) 12 #pragma rs reduce(a32) accumulator(accumGood) 18 #pragma rs reduce(b) accumulator(accumBad)
|
| /frameworks/compile/slang/tests/P_reduce_general_inputs/ |
| reduce_general_inputs.rs | 2 #pragma version(1) 3 #pragma rs java_package_name(inputs) 17 #pragma rs reduce(my_half_half_0) accumulator(my_half_half_0_accum) combiner(combiner) 20 #pragma rs reduce(my_half_half_1) accumulator(my_half_half_1_accum) combiner(combiner) 23 #pragma rs reduce(my_half_half2_0) accumulator(my_half_half2_0_accum) combiner(combiner) 26 #pragma rs reduce(my_half_half2_1) accumulator(my_half_half2_1_accum) combiner(combiner) 29 #pragma rs reduce(my_half_half4_0) accumulator(my_half_half4_0_accum) combiner(combiner) 32 #pragma rs reduce(my_half_half4_1) accumulator(my_half_half4_1_accum) combiner(combiner) 35 #pragma rs reduce(my_half_float_0) accumulator(my_half_float_0_accum) combiner(combiner) 38 #pragma rs reduce(my_half_float_1) accumulator(my_half_float_1_accum) combiner(combiner [all...] |
| /external/clang/test/CodeGenCXX/ |
| pragma-visibility.cpp | 3 #pragma GCC visibility push(hidden) 7 #pragma GCC visibility pop 11 #pragma GCC visibility push(hidden) 17 #pragma GCC visibility pop 19 #pragma GCC visibility push(hidden) 23 #pragma GCC visibility pop 27 #pragma GCC visibility push(hidden) 30 #pragma GCC visibility pop 34 #pragma GCC visibility push(hidden) 38 #pragma GCC visibility po [all...] |