/frameworks/compile/slang/tests/P_root_compute/ |
root_compute.rs | 0 #pragma version(1) 2 #pragma rs java_package_name(foo)
|
/frameworks/compile/slang/tests/P_root_graphics_13/ |
root_graphics_13.rs | 2 #pragma version(1) 3 #pragma rs java_package_name(foo)
|
/external/clang/test/OpenMP/ |
threadprivate_messages.cpp | 3 #pragma omp threadprivate // expected-error {{expected '(' after 'threadprivate'}} 4 #pragma omp threadprivate( // expected-error {{expected identifier}} expected-error {{expected ')'}} expected-note {{to match this '('}} 5 #pragma omp threadprivate() // expected-error {{expected identifier}} 6 #pragma omp threadprivate(1) // expected-error {{expected unqualified-id}} 12 #pragma omp threadprivate(1) // expected-error {{expected unqualified-id}} 18 #pragma omp threadprivate(a) 19 #pragma omp threadprivate(u) // expected-error {{use of undeclared identifier 'u'}} 20 #pragma omp threadprivate(d, a) // expected-error {{'#pragma omp threadprivate' must precede all references to variable 'a'}} 23 #pragma omp threadprivate(l)) // expected-warning {{extra tokens at the end of '#pragma omp threadprivate' (…) [all...] |
/external/clang/test/Index/Inputs/ |
crash-recovery-reparse-remap.c | 8 #pragma clang __debug crash
|
retain-comments-from-system-headers.h | 0 #pragma clang system_header
|
/external/clang/test/Modules/Inputs/ |
lookup_left.hpp | 3 #pragma weak weak_identifier // expected-warning{{weak identifier 'weak_identifier' never declared}}
|
/external/clang/test/Parser/ |
pragma-fp-contract.c | 5 /* expected-error@+1 {{'#pragma fp_contract' should only appear at file scope or at the start of a compound expression}} */ 6 #pragma STDC FP_CONTRACT ON 10 #pragma STDC FP_CONTRACT OFF 11 #pragma STDC FP_CONTRACT ON
|
/external/clang/test/Preprocessor/ |
missing-system-header.h | 0 #pragma clang system_header
|
/external/clang/test/Sema/ |
pragma-pack-and-options-align.c | 3 // Check that #pragma pack and #pragma options share the same stack. 5 #pragma pack(push, 1) 12 #pragma options align=natural 19 #pragma options align=reset 20 #pragma options align=native 27 #pragma pack(pop) 33 #pragma pack(pop) 41 #pragma pack(push,2) 42 #pragma options align=powe [all...] |
pragma-pack-apple.c | 2 // RUN: %clang -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...] |
/external/clang/test/SemaCXX/ |
pragma-weak.cpp | 3 #pragma weak foo
|
pragma-pack.cpp | 10 #pragma pack(push, 1) 14 #pragma pack(pop) 27 #pragma pack(push, 1) 31 #pragma pack(pop) 41 #pragma pack(push) 42 #pragma pack(1) 46 #pragma pack(pop) 48 #pragma pack(push) 49 #pragma pack(2) 53 #pragma pack(pop [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/stlport/src/ |
warning_disable.h | 8 # pragma warning( disable : 4097 ) /* typedef-name used as based class of (...) */ 9 # pragma warning( disable : 4251 ) /* DLL interface needed */ 10 # pragma warning( disable : 4284 ) /* for -> operator */ 11 # pragma warning( disable : 4503 ) /* decorated name length exceeded, name was truncated */ 12 # pragma warning( disable : 4514 ) /* unreferenced inline function has been removed */ 13 # pragma warning( disable : 4660 ) /* template-class specialization '...' is already instantiated */ 14 # pragma warning( disable : 4701 ) /* local variable 'base' may be used without having been initialized */ 15 # pragma warning( disable : 4710 ) /* function (...) not inlined */ 16 # pragma warning( disable : 4786 ) /* identifier truncated to 255 characters */ 20 # pragma warning( disable : 4511 ) /* copy constructor cannot be generated * [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
warning_disable.h | 8 # pragma warning( disable : 4097 ) /* typedef-name used as based class of (...) */ 9 # pragma warning( disable : 4251 ) /* DLL interface needed */ 10 # pragma warning( disable : 4284 ) /* for -> operator */ 11 # pragma warning( disable : 4503 ) /* decorated name length exceeded, name was truncated */ 12 # pragma warning( disable : 4514 ) /* unreferenced inline function has been removed */ 13 # pragma warning( disable : 4660 ) /* template-class specialization '...' is already instantiated */ 14 # pragma warning( disable : 4701 ) /* local variable 'base' may be used without having been initialized */ 15 # pragma warning( disable : 4710 ) /* function (...) not inlined */ 16 # pragma warning( disable : 4786 ) /* identifier truncated to 255 characters */ 20 # pragma warning( disable : 4511 ) /* copy constructor cannot be generated * [all...] |
/external/stlport/stlport/stl/config/ |
_prolog.h | 4 # pragma warning (push) 10 # pragma pack(push, 8) 12 # pragma pack(push, 16) 17 # pragma option push 18 # pragma option -Vx- -Ve- -a8 -b -pc 23 # pragma set woff 1209 24 # pragma set woff 1174 25 # pragma set woff 1375 27 # pragma set woff 1183 32 # pragma __environment __sav [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
_prolog.h | 4 # pragma warning (push) 10 # pragma pack(push, 8) 12 # pragma pack(push, 16) 17 # pragma option push 18 # pragma option -Vx- -Ve- -a8 -b -pc 23 # pragma set woff 1209 24 # pragma set woff 1174 25 # pragma set woff 1375 27 # pragma set woff 1183 32 # pragma __environment __sav [all...] |
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/ |
_prolog.h | 4 # pragma warning (push) 10 # pragma pack(push, 8) 12 # pragma pack(push, 16) 17 # pragma option push 18 # pragma option -Vx- -Ve- -a8 -b -pc 23 # pragma set woff 1209 24 # pragma set woff 1174 25 # pragma set woff 1375 27 # pragma set woff 1183 32 # pragma __environment __sav [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/ |
_prolog.h | 4 # pragma warning (push) 10 # pragma pack(push, 8) 12 # pragma pack(push, 16) 17 # pragma option push 18 # pragma option -Vx- -Ve- -a8 -b -pc 23 # pragma set woff 1209 24 # pragma set woff 1174 25 # pragma set woff 1375 27 # pragma set woff 1183 32 # pragma __environment __sav [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/ |
_prolog.h | 4 # pragma warning (push) 10 # pragma pack(push, 8) 12 # pragma pack(push, 16) 17 # pragma option push 18 # pragma option -Vx- -Ve- -a8 -b -pc 23 # pragma set woff 1209 24 # pragma set woff 1174 25 # pragma set woff 1375 27 # pragma set woff 1183 32 # pragma __environment __sav [all...] |
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_prolog.h | 4 # pragma warning (push) 10 # pragma pack(push, 8) 12 # pragma pack(push, 16) 17 # pragma option push 18 # pragma option -Vx- -Ve- -a8 -b -pc 23 # pragma set woff 1209 24 # pragma set woff 1174 25 # pragma set woff 1375 27 # pragma set woff 1183 32 # pragma __environment __sav [all...] |
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_prolog.h | 4 # pragma warning (push) 10 # pragma pack(push, 8) 12 # pragma pack(push, 16) 17 # pragma option push 18 # pragma option -Vx- -Ve- -a8 -b -pc 23 # pragma set woff 1209 24 # pragma set woff 1174 25 # pragma set woff 1375 27 # pragma set woff 1183 32 # pragma __environment __sav [all...] |
/external/qemu/distrib/sdl-1.2.15/src/hermes/ |
HeadX86.h | 134 #pragma warning 601 9 136 #pragma aux Hermes_X86_CPU "_*" 138 #pragma aux ConvertX86 "_*" modify [EAX EBX ECX EDX ESI EDI] 139 #pragma aux ClearX86_32 "_*" modify [EAX EBX ECX EDX ESI EDI] 140 #pragma aux ClearX86_24 "_*" modify [EAX EBX ECX EDX ESI EDI] 141 #pragma aux ClearX86_16 "_*" modify [EAX EBX ECX EDX ESI EDI] 142 #pragma aux ClearX86_8 "_*" modify [EAX EBX ECX EDX ESI EDI] 144 #pragma aux ConvertX86p32_32BGR888 "_*" 145 #pragma aux ConvertX86p32_32RGBA888 "_*" 146 #pragma aux ConvertX86p32_32BGRA888 "_* [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/detail/ |
enable_warnings.hpp | 16 # pragma warning(default: 4511) // copy constructor can't not be generated 17 # pragma warning(default: 4512) // assignment operator can't not be generated 18 # pragma warning(default: 4100) // unreferenced formal parameter 19 # pragma warning(default: 4996) // <symbol> was declared deprecated 20 # pragma warning(default: 4355) // 'this' : used in base member initializer list 21 # pragma warning(default: 4706) // assignment within conditional expression 22 # pragma warning(default: 4251) // class 'A<T>' needs to have dll-interface to be used by clients of class 'B' 23 # pragma warning(default: 4127) // conditional expression is constant 24 # pragma warning(default: 4290) // C++ exception specification ignored except to ... 25 # pragma warning(default: 4180) // qualifier applied to function type has no meaning; ignore [all...] |