Searched defs:ShowColors (Results 1 - 9 of 9) sorted by relevance

/external/clang/tools/diagtool/
H A DTreeView.cpp35 const bool ShowColors; member in class:TreePrinter
39 : out(out), ShowColors(hasColors(out)), FlagsOnly(false) {}
42 if (ShowColors)
47 if (ShowColors)
76 if (ShowColors && !isIgnored(I->DiagID))
132 if (ShowColors) {
/external/clang/lib/Frontend/
H A DASTConsumers.cpp57 bool ShowColors = Out.has_colors(); local
58 if (ShowColors)
61 if (ShowColors)
/external/llvm/lib/Support/
H A DSourceMgr.cpp206 bool ShowColors) const {
219 Diagnostic.print(nullptr, OS, ShowColors);
225 ArrayRef<SMFixIt> FixIts, bool ShowColors) const {
226 PrintMessage(OS, GetMessage(Loc, Kind, Msg, Ranges, FixIts), ShowColors);
231 ArrayRef<SMFixIt> FixIts, bool ShowColors) const {
232 PrintMessage(llvm::errs(), Loc, Kind, Msg, Ranges, FixIts, ShowColors); local
343 bool ShowColors) const {
345 ShowColors &= S.has_colors();
347 if (ShowColors)
369 if (ShowColors)
[all...]
/external/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp242 void AnalysisDeclContext::dumpCFG(bool ShowColors) { argument
243 getCFG()->dump(getASTContext().getLangOpts(), ShowColors);
H A DCFG.cpp4147 bool ShowColors) {
4152 if (ShowColors)
4168 if (ShowColors)
4225 if (ShowColors)
4237 if (ShowColors)
4245 if (ShowColors)
4248 if (ShowColors)
4253 if (ShowColors)
4274 if (ShowColors)
4283 if (ShowColors)
4144 print_block(raw_ostream &OS, const CFG* cfg, const CFGBlock &B, StmtPrinterHelper &Helper, bool print_edges, bool ShowColors) argument
4328 print(llvm::errs(), LO, ShowColors); local
4356 print(llvm::errs(), cfg, LO, ShowColors); local
[all...]
/external/clang/include/clang/Basic/
H A DDiagnostic.h179 bool ShowColors; // Color printing is enabled. member in class:clang::DiagnosticsEngine
485 void setShowColors(bool Val = false) { ShowColors = Val; }
486 bool getShowColors() { return ShowColors; }
1382 unsigned ShowColors : 1;
/external/clang/lib/AST/
H A DASTDiagnostic.cpp254 bool ShowColors, raw_ostream &OS);
282 TDT.ShowColors, OS)) {
1733 bool ShowColors, raw_ostream &OS) {
1737 ElideType, ShowColors);
1730 FormatTemplateTypeDiff(ASTContext &Context, QualType FromType, QualType ToType, bool PrintTree, bool PrintFromType, bool ElideType, bool ShowColors, raw_ostream &OS) argument
H A DASTDumper.cpp120 bool ShowColors; member in class:__anon17715::ASTDumper
143 if (Dumper.ShowColors)
147 if (Dumper.ShowColors)
189 ShowColors(SM && SM->getDiagnostics().getShowColors()) { }
192 const SourceManager *SM, bool ShowColors)
195 ShowColors(ShowColors) { }
2159 &getASTContext().getSourceManager(), /*ShowColors*/true);
2195 ASTDumper P(llvm::errs(), nullptr, nullptr, /*ShowColors*/true);
2221 ASTDumper D(llvm::errs(), nullptr, nullptr, /*ShowColors*/tru
191 ASTDumper(raw_ostream &OS, const CommandTraits *Traits, const SourceManager *SM, bool ShowColors) argument
[all...]
/external/clang/lib/Driver/
H A DTools.cpp3972 enum { Colors_On, Colors_Off, Colors_Auto } ShowColors = Colors_Auto; local
3985 ShowColors = Colors_On;
3988 ShowColors = Colors_Off;
3993 ShowColors = Colors_On;
3995 ShowColors = Colors_Off;
3997 ShowColors = Colors_Auto;
4003 if (ShowColors == Colors_On ||
4004 (ShowColors == Colors_Auto && llvm::sys::Process::StandardErrHasColors()))

Completed in 547 milliseconds