Home
last modified time | relevance | path

Searched refs:UseColor (Results 1 – 8 of 8) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DWithColor.cpp33 static ManagedStatic<cl::opt<cl::boolOrDefault>, CreateUseColor> UseColor; variable
34 void llvm::initWithColorOptions() { *UseColor; } in initWithColorOptions()
37 return *UseColor == cl::BOU_UNSET ? OS.has_colors() in DefaultAutoDetectFunction()
38 : *UseColor == cl::BOU_TRUE; in DefaultAutoDetectFunction()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DLinePrinter.h54 LinePrinter(int Indent, bool UseColor, raw_ostream &Stream,
83 bool hasColor() const { return UseColor; } in hasColor()
105 bool UseColor; variable
180 bool UseColor; variable
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp56 LinePrinter::LinePrinter(int Indent, bool UseColor, llvm::raw_ostream &Stream, in LinePrinter() argument
58 : OS(Stream), IndentSpaces(Indent), CurrentIndent(0), UseColor(UseColor), in LinePrinter()
295 : OS(P.OS), UseColor(P.hasColor()) { in WithColor()
296 if (UseColor) in WithColor()
301 if (UseColor) in ~WithColor()
/openbsd-src/gnu/llvm/llvm/utils/yaml-bench/
H A DYAMLBench.cpp56 UseColor("use-color", cl::desc("Emit colored output (default=autodetect)"), variable
196 bool ShowColors = UseColor == cl::BOU_UNSET in main()
198 : UseColor == cl::BOU_TRUE; in main()
/openbsd-src/gnu/llvm/clang/tools/scan-build/bin/
H A Dscan-build32 my $UseColor = (defined $TERM and $TERM =~ 'xterm-.*color' and -t STDOUT
84 if ($UseColor) {
94 if ($UseColor) {
112 if ($UseColor) {
/openbsd-src/gnu/llvm/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp728 cl::opt<cl::boolOrDefault> UseColor( in run() local
791 ViewOpts.Colors = UseColor == cl::BOU_UNSET in run()
793 : UseColor == cl::BOU_TRUE; in run()
796 if (UseColor == cl::BOU_FALSE) in run()
801 if (UseColor == cl::BOU_TRUE) in run()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DCoreProperties.td138 def UseColor: Property<"use-color", "Boolean">,
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp1094 const bool UseColor = opts::pretty::ColorOutput == cl::BOU_UNSET in dumpPretty() local
1097 LinePrinter Printer(2, UseColor, Stream, opts::Filters); in dumpPretty()