Home
last modified time | relevance | path

Searched refs:DIAGOPT (Results 1 – 5 of 5) sorted by relevance

/external/clang/include/clang/Basic/
DDiagnosticOptions.def11 // 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 …]
DDiagnosticOptions.h73 #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/
DFrontendActions.cpp519 #define DIAGOPT(Name, Bits, Default) DUMP_BOOLEAN(DiagOpts->Name, #Name); in ReadDiagnosticOptions() macro
/external/clang/lib/Serialization/
DASTWriter.cpp1406 #define DIAGOPT(Name, Bits, Default) Record.push_back(DiagOpts.Name); in WriteControlBlock() macro
DASTReader.cpp4752 #define DIAGOPT(Name, Bits, Default) DiagOpts->Name = Record[Idx++]; in ParseDiagnosticOptions() macro