Home
last modified time | relevance | path

Searched refs:ShowColors (Results 1 – 18 of 18) sorted by relevance

/trueos/contrib/llvm/lib/Support/
HDSourceMgr.cpp217 ArrayRef<SMFixIt> FixIts, bool ShowColors) const { in PrintMessage()
232 Diagnostic.print(0, OS, ShowColors); in PrintMessage()
237 ArrayRef<SMFixIt> FixIts, bool ShowColors) const { in PrintMessage()
238 PrintMessage(llvm::errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); in PrintMessage()
349 bool ShowColors) const { in print()
351 ShowColors &= S.has_colors(); in print()
353 if (ShowColors) in print()
375 if (ShowColors) in print()
380 if (ShowColors) in print()
385 if (ShowColors) in print()
[all …]
/trueos/contrib/llvm/tools/clang/lib/Frontend/
HDTextDiagnostic.cpp693 if (DiagOpts->ShowColors) in emitDiagnosticMessage()
696 printDiagnosticLevel(OS, Level, DiagOpts->ShowColors, in emitDiagnosticMessage()
700 DiagOpts->MessageLength, DiagOpts->ShowColors); in emitDiagnosticMessage()
706 bool ShowColors, in printDiagnosticLevel() argument
708 if (ShowColors) { in printDiagnosticLevel()
738 if (ShowColors) in printDiagnosticLevel()
747 bool ShowColors) { in printDiagnosticMessage() argument
749 if (ShowColors) { in printDiagnosticMessage()
770 if (ShowColors) in printDiagnosticMessage()
804 if (DiagOpts->ShowColors) in emitDiagnosticLoc()
[all …]
HDTextDiagnosticPrinter.cpp135 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors, in HandleDiagnostic()
140 DiagOpts->ShowColors); in HandleDiagnostic()
HDASTConsumers.cpp57 bool ShowColors = Out.has_colors(); in TraverseDecl() local
58 if (ShowColors) in TraverseDecl()
61 if (ShowColors) in TraverseDecl()
HDWarnings.cpp59 Diags.setShowColors(Opts.ShowColors); in ProcessWarningOptions()
HDCompilerInvocation.cpp551 Opts.ShowColors = Args.hasArg(OPT_fcolor_diagnostics); in ParseDiagnosticArgs()
/trueos/contrib/llvm/tools/clang/include/clang/Frontend/
HDTextDiagnostic.h54 bool ShowColors,
77 bool ShowColors);
/trueos/contrib/llvm/include/llvm/Support/
HDSourceMgr.h151 bool ShowColors = true) const;
157 bool ShowColors = true) const;
259 bool ShowColors = true) const;
/trueos/contrib/llvm/tools/clang/lib/Analysis/
HDCFG.cpp3822 bool ShowColors) { in print_block() argument
3827 if (ShowColors) in print_block()
3841 if (ShowColors) in print_block()
3897 if (ShowColors) in print_block()
3909 if (ShowColors) in print_block()
3917 if (ShowColors) in print_block()
3920 if (ShowColors) in print_block()
3925 if (ShowColors) in print_block()
3937 if (ShowColors) in print_block()
3946 if (ShowColors) in print_block()
[all …]
HDAnalysisDeclContext.cpp230 void AnalysisDeclContext::dumpCFG(bool ShowColors) { in dumpCFG() argument
231 getCFG()->dump(getASTContext().getLangOpts(), ShowColors); in dumpCFG()
/trueos/contrib/llvm/tools/clang/include/clang/Basic/
HDDiagnostic.h177 bool ShowColors; // Color printing is enabled. variable
471 void setShowColors(bool Val = false) { ShowColors = Val; }
472 bool getShowColors() { return ShowColors; } in getShowColors()
1345 unsigned ShowColors : 1; member
HDDiagnosticOptions.def66 DIAGOPT(ShowColors, 1, 0) /// Show diagnostics with ANSI color sequences.
/trueos/contrib/llvm/tools/clang/include/clang/Analysis/
HDCFG.h559 void dump(const CFG *cfg, const LangOptions &LO, bool ShowColors = false) const;
561 bool ShowColors) const;
841 void print(raw_ostream &OS, const LangOptions &LO, bool ShowColors) const;
842 void dump(const LangOptions &LO, bool ShowColors) const;
HDAnalysisContext.h155 void dumpCFG(bool ShowColors);
/trueos/contrib/llvm/tools/clang/lib/AST/
HDASTDumper.cpp120 bool ShowColors; member in __anond72e91490111::ASTDumper
143 if (Dumper.ShowColors) in ColorScope()
147 if (Dumper.ShowColors) in ~ColorScope()
157 ShowColors(SM && SM->getDiagnostics().getShowColors()) { } in ASTDumper()
160 const SourceManager *SM, bool ShowColors) in ASTDumper() argument
163 ShowColors(ShowColors) { } in ASTDumper()
HDASTDiagnostic.cpp234 bool ShowColors, raw_ostream &OS);
265 TDT.ShowColors, OS)) { in FormatASTNodeDiagnosticArgument()
1691 bool ShowColors, raw_ostream &OS) { in FormatTemplateTypeDiff() argument
1695 ElideType, ShowColors); in FormatTemplateTypeDiff()
/trueos/contrib/llvm/tools/clang/lib/Basic/
HDDiagnostic.cpp57 ShowColors = false; in DiagnosticsEngine()
847 TDT.ShowColors = getDiags()->ShowColors; in FormatDiagnostic()
/trueos/contrib/llvm/tools/clang/lib/Driver/
HDTools.cpp3549 enum { Colors_On, Colors_Off, Colors_Auto } ShowColors = Colors_Auto; in ConstructJob() local
3563 ShowColors = Colors_On; in ConstructJob()
3566 ShowColors = Colors_Off; in ConstructJob()
3571 ShowColors = Colors_On; in ConstructJob()
3573 ShowColors = Colors_Off; in ConstructJob()
3575 ShowColors = Colors_Auto; in ConstructJob()
3581 if (ShowColors == Colors_On || in ConstructJob()
3582 (ShowColors == Colors_Auto && llvm::sys::Process::StandardErrHasColors())) in ConstructJob()