/external/clang/include/clang/Basic/ |
D | LangOptions.def | 11 // define the LANGOPT macro to make use of this information. 34 #ifndef LANGOPT 35 # error Define the LANGOPT macro to handle language options 40 LANGOPT(Name, Bits, Default, Description) 50 LANGOPT(Name, Bits, Default, Description) 65 LANGOPT(Name, Bits, Default, Description) 69 LANGOPT(C99 , 1, 0, "C99") 70 LANGOPT(C11 , 1, 0, "C11") 71 LANGOPT(MSVCCompat , 1, 0, "Microsoft Visual C++ full compatibility mode") 72 LANGOPT(MicrosoftExt , 1, 0, "Microsoft C++ extensions") [all …]
|
D | LangOptions.h | 33 #define LANGOPT(Name, Bits, Default, Description) unsigned Name : Bits; macro 40 #define LANGOPT(Name, Bits, Default, Description) macro 106 #define LANGOPT(Name, Bits, Default, Description) macro
|
/external/clang/patches/ |
D | 0003-Add-support-for-RenderScript-specific-options.patch | 57 @@ -123,6 +123,7 @@ LANGOPT(OpenCLVersion , 32, 0, "OpenCL version") 58 LANGOPT(NativeHalfType , 1, 0, "Native half type support") 59 LANGOPT(CUDA , 1, 0, "CUDA") 60 LANGOPT(OpenMP , 1, 0, "OpenMP support") 61 +LANGOPT(Renderscript , 1, 0, "RenderScript") 63 LANGOPT(AssumeSaneOperatorNew , 1, 1, "implicit __attribute__((malloc)) for C++'s new operators") 64 LANGOPT(SizedDeallocation , 1, 0, "enable sized deallocation functions")
|
/external/clang/lib/Basic/ |
D | LangOptions.cpp | 18 #define LANGOPT(Name, Bits, Default, Description) Name = Default; in LangOptions() macro 24 #define LANGOPT(Name, Bits, Default, Description) in resetNonModularOptions() macro
|
/external/clang/lib/Frontend/ |
D | FrontendActions.cpp | 452 #define LANGOPT(Name, Bits, Default, Description) \ in ReadLanguageOptions() macro
|
D | CompilerInvocation.cpp | 1958 #define LANGOPT(Name, Bits, Default, Description) \ in getModuleHash() macro
|
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 175 #define LANGOPT(Name, Bits, Default, Description) \ in checkLanguageOptions() macro 201 LANGOPT(Name, Bits, Default, Description) in checkLanguageOptions() 4726 #define LANGOPT(Name, Bits, Default, Description) \ in ParseLanguageOptions() macro
|
D | ASTWriter.cpp | 1257 #define LANGOPT(Name, Bits, Default, Description) \ in WriteControlBlock() macro
|