Searched refs:DIAGOPT (Results 1 – 5 of 5) sorted by relevance
/external/clang/include/clang/Basic/ |
D | DiagnosticOptions.def | 11 // must define the DIAGOPT macro to make use of this information. 19 #ifndef DIAGOPT 20 # error Define the DIAGOPT macro to handle language options 25 DIAGOPT(Name, Bits, Default) 30 DIAGOPT(Name, Bits, Default) 34 # define SEMANTIC_DIAGOPT(Name, Bits, Default) DIAGOPT(Name, Bits, Default) 48 DIAGOPT(NoRewriteMacros, 1, 0) /// -Wno-rewrite-macros 49 DIAGOPT(Pedantic, 1, 0) /// -pedantic 50 DIAGOPT(PedanticErrors, 1, 0) /// -pedantic-errors 51 DIAGOPT(ShowColumn, 1, 1) /// Show column number on diagnostics. [all …]
|
D | DiagnosticOptions.h | 73 #define DIAGOPT(Name, Bits, Default) unsigned Name : Bits; macro 80 #define DIAGOPT(Name, Bits, Default) macro 101 #define DIAGOPT(Name, Bits, Default) macro 108 #define DIAGOPT(Name, Bits, Default) Name = Default; in DiagnosticOptions() macro
|
/external/clang/lib/Frontend/ |
D | FrontendActions.cpp | 519 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name); in ReadDiagnosticOptions() macro
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 1406 #define DIAGOPT(Name, Bits, Default) Record.push_back(DiagOpts.Name); in WriteControlBlock() macro
|
D | ASTReader.cpp | 4752 #define DIAGOPT(Name, Bits, Default) DiagOpts->Name = Record[Idx++]; in ParseDiagnosticOptions() macro
|