reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
46 SEMANTIC_DIAGOPT(IgnoreWarnings, 1, 0) /// -w 47 DIAGOPT(NoRewriteMacros, 1, 0) /// -Wno-rewrite-macros 48 DIAGOPT(Pedantic, 1, 0) /// -pedantic 49 DIAGOPT(PedanticErrors, 1, 0) /// -pedantic-errors 50 DIAGOPT(ShowColumn, 1, 1) /// Show column number on diagnostics. 51 DIAGOPT(ShowLocation, 1, 1) /// Show source location information. 52 DIAGOPT(ShowLevel, 1, 1) /// Show diagnostic level. 53 DIAGOPT(AbsolutePath, 1, 0) /// Use absolute paths. 54 DIAGOPT(ShowCarets, 1, 1) /// Show carets in diagnostics. 55 DIAGOPT(ShowFixits, 1, 1) /// Show fixit information. 56 DIAGOPT(ShowSourceRanges, 1, 0) /// Show source ranges in numeric form. 57 DIAGOPT(ShowParseableFixits, 1, 0) /// Show machine parseable fix-its. 58 DIAGOPT(ShowPresumedLoc, 1, 0) /// Show presumed location for diagnostics. 59 DIAGOPT(ShowOptionNames, 1, 0) /// Show the option name for mappable 61 DIAGOPT(ShowNoteIncludeStack, 1, 0) /// Show include stacks for notes. 62 VALUE_DIAGOPT(ShowCategories, 2, 0) /// Show categories: 0 -> none, 1 -> Number, 67 DIAGOPT(ShowColors, 1, 0) /// Show diagnostics with ANSI color sequences. 70 DIAGOPT(VerifyDiagnostics, 1, 0) /// Check that diagnostics match the expected 77 DIAGOPT(ElideType, 1, 0) /// Elide identical types in template diffing 78 DIAGOPT(ShowTemplateTree, 1, 0) /// Print a template tree when diffing 79 DIAGOPT(CLFallbackMode, 1, 0) /// Format for clang-cl fallback mode 81 VALUE_DIAGOPT(ErrorLimit, 32, 0) /// Limit # errors emitted. 83 VALUE_DIAGOPT(MacroBacktraceLimit, 32, DefaultMacroBacktraceLimit) 85 VALUE_DIAGOPT(TemplateBacktraceLimit, 32, DefaultTemplateBacktraceLimit) 87 VALUE_DIAGOPT(ConstexprBacktraceLimit, 32, DefaultConstexprBacktraceLimit) 89 VALUE_DIAGOPT(SpellCheckingLimit, 32, DefaultSpellCheckingLimit) 91 VALUE_DIAGOPT(SnippetLineLimit, 32, DefaultSnippetLineLimit) 93 VALUE_DIAGOPT(TabStop, 32, DefaultTabStop) /// The distance between tab stops. 95 VALUE_DIAGOPT(MessageLength, 32, 0)tools/clang/lib/Serialization/ASTReader.cpp
5745 for (unsigned N = Record[Idx++]; N; --N) 5746 DiagOpts->Warnings.push_back(ReadString(Record, Idx)); 5747 for (unsigned N = Record[Idx++]; N; --N) 5748 DiagOpts->Remarks.push_back(ReadString(Record, Idx));