Searched refs:ShowColors (Results 1 - 17 of 17) sorted by relevance

/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DSourceMgr.cpp217 ArrayRef<SMFixIt> FixIts, bool ShowColors) const {
232 Diagnostic.print(0, OS, ShowColors);
237 ArrayRef<SMFixIt> FixIts, bool ShowColors) const {
238 PrintMessage(llvm::errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); local
349 bool ShowColors) const {
351 ShowColors &= S.has_colors();
353 if (ShowColors)
375 if (ShowColors)
380 if (ShowColors)
385 if (ShowColors)
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DTextDiagnostic.h54 bool ShowColors,
72 /// \param ShowColors Enable colorizing of the message.
77 bool ShowColors);
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DTextDiagnosticPrinter.cpp135 TextDiagnostic::printDiagnosticLevel(OS, Level, DiagOpts->ShowColors,
140 DiagOpts->ShowColors);
H A DTextDiagnostic.cpp693 if (DiagOpts->ShowColors)
696 printDiagnosticLevel(OS, Level, DiagOpts->ShowColors,
700 DiagOpts->MessageLength, DiagOpts->ShowColors);
706 bool ShowColors,
708 if (ShowColors) {
738 if (ShowColors)
747 bool ShowColors) {
749 if (ShowColors) {
770 if (ShowColors)
804 if (DiagOpts->ShowColors)
[all...]
H A DASTConsumers.cpp57 bool ShowColors = Out.has_colors(); local
58 if (ShowColors)
61 if (ShowColors)
H A DWarnings.cpp59 Diags.setShowColors(Opts.ShowColors);
H A DCompilerInvocation.cpp551 Opts.ShowColors = Args.hasArg(OPT_fcolor_diagnostics);
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DSourceMgr.h145 /// @param ShowColors - Display colored messages if output is a terminal and
151 bool ShowColors = true) const;
157 bool ShowColors = true) const;
259 bool ShowColors = true) const;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/AST/
H A DASTDumper.cpp120 bool ShowColors; member in class:__anon3116::ASTDumper
143 if (Dumper.ShowColors)
147 if (Dumper.ShowColors)
157 ShowColors(SM && SM->getDiagnostics().getShowColors()) { }
160 const SourceManager *SM, bool ShowColors)
163 ShowColors(ShowColors) { }
2121 &getASTContext().getSourceManager(), /*ShowColors*/true);
2157 ASTDumper P(llvm::errs(), 0, 0, /*ShowColors*/true);
2183 ASTDumper D(llvm::errs(), 0, 0, /*ShowColors*/tru
159 ASTDumper(raw_ostream &OS, const CommandTraits *Traits, const SourceManager *SM, bool ShowColors) argument
[all...]
H A DASTDiagnostic.cpp234 bool ShowColors, raw_ostream &OS);
265 TDT.ShowColors, OS)) {
1691 bool ShowColors, raw_ostream &OS) {
1695 ElideType, ShowColors);
1688 FormatTemplateTypeDiff(ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColors, raw_ostream &OS) argument
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DCFG.cpp3822 bool ShowColors) {
3827 if (ShowColors)
3841 if (ShowColors)
3897 if (ShowColors)
3909 if (ShowColors)
3917 if (ShowColors)
3920 if (ShowColors)
3925 if (ShowColors)
3937 if (ShowColors)
3946 if (ShowColors)
3819 print_block(raw_ostream &OS, const CFG* cfg, const CFGBlock &B, StmtPrinterHelper &Helper, bool print_edges, bool ShowColors) argument
3979 print(llvm::errs(), LO, ShowColors); local
4007 print(llvm::errs(), cfg, LO, ShowColors); local
[all...]
H A DAnalysisDeclContext.cpp230 void AnalysisDeclContext::dumpCFG(bool ShowColors) { argument
231 getCFG()->dump(getASTContext().getLangOpts(), ShowColors);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Analysis/
H A DCFG.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;
H A DAnalysisContext.h155 void dumpCFG(bool ShowColors);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnostic.h177 bool ShowColors; // Color printing is enabled. member in class:clang::DiagnosticsEngine
471 void setShowColors(bool Val = false) { ShowColors = Val; }
472 bool getShowColors() { return ShowColors; }
1345 unsigned ShowColors : 1;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnostic.cpp57 ShowColors = false;
847 TDT.ShowColors = getDiags()->ShowColors;
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Driver/
H A DTools.cpp3549 enum { Colors_On, Colors_Off, Colors_Auto } ShowColors = Colors_Auto; local
3563 ShowColors = Colors_On;
3566 ShowColors = Colors_Off;
3571 ShowColors = Colors_On;
3573 ShowColors = Colors_Off;
3575 ShowColors = Colors_Auto;
3581 if (ShowColors == Colors_On ||
3582 (ShowColors == Colors_Auto && llvm::sys::Process::StandardErrHasColors()))

Completed in 271 milliseconds