Home
last modified time | relevance | path

Searched refs:Colors (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A Draw_ostream.h93 enum class Colors { enum
114 static constexpr Colors BLACK = Colors::BLACK;
115 static constexpr Colors RED = Colors::RED;
116 static constexpr Colors GREEN = Colors::GREEN;
117 static constexpr Colors YELLOW = Colors::YELLOW;
118 static constexpr Colors BLUE = Colors::BLUE;
119 static constexpr Colors MAGENTA = Colors::MAGENTA;
120 static constexpr Colors CYAN = Colors::CYAN;
121 static constexpr Colors WHITE = Colors::WHITE;
122 static constexpr Colors BRIGHT_BLACK = Colors::BRIGHT_BLACK;
[all …]
H A DWithColor.h72 raw_ostream &OS, raw_ostream::Colors Color = raw_ostream::SAVEDCOLOR,
120 WithColor &changeColor(raw_ostream::Colors Color, bool Bold = false,
H A DFormattedStream.h182 raw_ostream &changeColor(enum Colors Color, bool Bold, bool BG) override {
/freebsd/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DLogger.cpp39 llvm::WithColor Header(OS, llvm::raw_ostream::Colors::RED, /*Bold=*/true); in beginAnalysis()
51 llvm::WithColor Header(OS, llvm::raw_ostream::Colors::RED, /*Bold=*/true); in endAnalysis()
63 llvm::WithColor Header(OS, llvm::raw_ostream::Colors::RED, /*Bold=*/true); in enterBlock()
81 llvm::WithColor Subheader(OS, llvm::raw_ostream::Colors::CYAN, in enterElement()
90 llvm::WithColor Subheader(OS, llvm::raw_ostream::Colors::CYAN, in recordState()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DMarkupFilter.cpp408 OS.changeColor(raw_ostream::Colors::SAVEDCOLOR, Bold); in trySGR()
411 auto SGRColor = StringSwitch<std::optional<raw_ostream::Colors>>(Node.Text) in trySGR()
412 .Case("\033[30m", raw_ostream::Colors::BLACK) in trySGR()
413 .Case("\033[31m", raw_ostream::Colors::RED) in trySGR()
414 .Case("\033[32m", raw_ostream::Colors::GREEN) in trySGR()
415 .Case("\033[33m", raw_ostream::Colors::YELLOW) in trySGR()
416 .Case("\033[34m", raw_ostream::Colors::BLUE) in trySGR()
417 .Case("\033[35m", raw_ostream::Colors::MAGENTA) in trySGR()
418 .Case("\033[36m", raw_ostream::Colors::CYAN) in trySGR()
419 .Case("\033[37m", raw_ostream::Colors in trySGR()
[all...]
/freebsd/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageViewOptions.h29 bool Colors; member
62 raw_ostream::Colors Color) const {
63 return llvm::colored_ostream(OS, Color, Colors);
H A DSourceCoverageViewText.cpp170 std::optional<raw_ostream::Colors> Highlight; in renderLine()
183 getOptions().Colors && Highlight, /*Bold=*/false, in renderLine()
200 getOptions().Colors && Highlight, /*Bold=*/false, /*BG=*/true) in renderLine()
222 Line.hasMultipleRegions() && getOptions().Colors) in renderLineCoverageColumn()
318 getOptions().Colors && !R.ExecutionCount, in renderBranchView()
328 getOptions().Colors && !R.FalseExecutionCount, in renderBranchView()
383 getOptions().Colors && Record.getPercentCovered() < 100.0, in renderMCDCView()
H A DRenderingSupport.h50 raw_ostream::Colors Color,
H A DSourceCoverageView.cpp249 getOptions().Colors) in print()
H A DCodeCoverage.cpp827 ViewOpts.Colors = UseColor == cl::BOU_UNSET in run()
834 ViewOpts.Colors = true; in run()
839 ViewOpts.Colors = false; in run()
/freebsd/contrib/llvm-project/lld/Common/
H A DErrorHandler.cpp207 void ErrorHandler::reportDiagnostic(StringRef location, Colors c, in reportDiagnostic()
215 os << c << diagKind << ": " << Colors::RESET; in reportDiagnostic()
228 reportDiagnostic(logName, Colors::RESET, "", msg); in log()
249 reportDiagnostic(getLocation(msg), Colors::MAGENTA, "warning", msg); in warn()
275 reportDiagnostic(getLocation(msg), Colors::RED, "error", msg); in error()
277 reportDiagnostic(logName, Colors::RED, "error", errorLimitExceededMsg); in error()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp66 constexpr raw_ostream::Colors raw_ostream::BLACK;
67 constexpr raw_ostream::Colors raw_ostream::RED;
68 constexpr raw_ostream::Colors raw_ostream::GREEN;
69 constexpr raw_ostream::Colors raw_ostream::YELLOW;
70 constexpr raw_ostream::Colors raw_ostream::BLUE;
71 constexpr raw_ostream::Colors raw_ostream::MAGENTA;
72 constexpr raw_ostream::Colors raw_ostream::CYAN;
73 constexpr raw_ostream::Colors raw_ostream::WHITE;
74 constexpr raw_ostream::Colors raw_ostream::SAVEDCOLOR;
75 constexpr raw_ostream::Colors raw_ostream::RESET;
[all …]
H A DGraphWriter.cpp93 static const char* Colors[NumColors] = { in getColorString() local
97 return Colors[ColorNumber % NumColors]; in getColorString()
H A DWithColor.cpp143 WithColor &WithColor::changeColor(raw_ostream::Colors Color, bool Bold, in changeColor()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DEHPersonalities.cpp138 ColorVector &Colors = BlockColors[Visiting]; in colorEHFunclets() local
139 if (!is_contained(Colors, Color)) in colorEHFunclets()
140 Colors.push_back(Color); in colorEHFunclets()
/freebsd/contrib/llvm-project/lld/include/lld/Common/
H A DErrorHandler.h124 using Colors = raw_ostream::Colors;
127 void reportDiagnostic(StringRef location, Colors c, StringRef diagKind,
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp28 static const enum raw_ostream::Colors noteColor = raw_ostream::CYAN;
29 static const enum raw_ostream::Colors remarkColor =
31 static const enum raw_ostream::Colors fixitColor =
33 static const enum raw_ostream::Colors caretColor =
35 static const enum raw_ostream::Colors warningColor =
37 static const enum raw_ostream::Colors templateColor =
39 static const enum raw_ostream::Colors errorColor = raw_ostream::RED;
40 static const enum raw_ostream::Colors fatalColor = raw_ostream::RED;
42 static const enum raw_ostream::Colors savedColor =
49 static constexpr raw_ostream::Colors CommentColor = raw_ostream::YELLOW;
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DTextDiagnostic.h48 enum llvm::raw_ostream::Colors Color;
49 StyleRange(unsigned S, unsigned E, enum llvm::raw_ostream::Colors C) in StyleRange()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTDumperUtils.h30 llvm::raw_ostream::Colors Color;
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp116 Colors.clear(); in Coloring()
120 return Colors; in colors()
133 MapType Colors; member
145 auto F = Colors.find(N); in getColor()
146 return F != Colors.end() ? F->second : ColorKind::None; in getColor()
210 if (Colors.count(N)) in color()
216 Colors[N] = other(P.second); in color()
222 if (!Needed.count(conj(N)) || Colors.count(N)) in color()
227 Colors[N] = other(P.second); in color()
235 if (!Colors in color()
[all...]
/freebsd/contrib/llvm-project/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp109 static raw_ostream::Colors chooseColor(unsigned CumulativeCycles, in chooseColor()
126 raw_ostream::Colors Color = chooseColor(Cycles, Executions, BufferSize); in tryChangeColor()
/freebsd/contrib/file/magic/Magdir/
H A Dasf49 #>>>121 lelong x \b, Colors Used Count %d
50 #>>>125 lelong x \b, Important Colors Count %d
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DMarkupFilter.h152 std::optional<raw_ostream::Colors> Color;
/freebsd/contrib/libxo/doc/
H A Dfield-roles.rst51 Colors and effects control how text values are displayed; they are
56 Colors and effects remain in effect until modified by other "C"-role
H A Doptions.rst117 .. index:: Colors

12