Home
last modified time | relevance | path

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

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A Draw_ostream.h96 enum class Colors { enum
109 static constexpr Colors BLACK = Colors::BLACK;
110 static constexpr Colors RED = Colors::RED;
111 static constexpr Colors GREEN = Colors::GREEN;
112 static constexpr Colors YELLOW = Colors::YELLOW;
113 static constexpr Colors BLUE = Colors::BLUE;
114 static constexpr Colors MAGENTA = Colors::MAGENTA;
115 static constexpr Colors CYAN = Colors::CYAN;
116 static constexpr Colors WHITE = Colors::WHITE;
117 static constexpr Colors SAVEDCOLOR = Colors::SAVEDCOLOR;
[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 { in changeColor()
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DMarkupFilter.cpp408 OS.changeColor(raw_ostream::Colors::SAVEDCOLOR, Bold); 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()
418 .Case("\033[36m", raw_ostream::Colors::CYAN) in trySGR()
419 .Case("\033[37m", raw_ostream::Colors::WHITE) in trySGR()
436 OS.changeColor(Color == raw_ostream::Colors::BLUE ? raw_ostream::Colors::CYAN in highlight()
445 OS.changeColor(raw_ostream::Colors::GREEN, Bold); in highlightValue()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageViewOptions.h29 bool Colors; member
62 raw_ostream::Colors Color) const { in colored_ostream()
63 return llvm::colored_ostream(OS, Color, Colors); in colored_ostream()
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.cpp252 getOptions().Colors) in print()
H A DCodeCoverage.cpp855 ViewOpts.Colors = UseColor == cl::BOU_UNSET in run()
862 ViewOpts.Colors = true; in run()
867 ViewOpts.Colors = false; in run()
/freebsd-14.2/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-14.2/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;
75 constexpr raw_ostream::Colors raw_ostream::RESET;
152 raw_ostream &raw_ostream::operator<<(Colors C) { in operator <<()
[all …]
H A DGraphWriter.cpp92 static const char* Colors[NumColors] = { in getColorString() local
96 return Colors[ColorNumber % NumColors]; in getColorString()
H A DWithColor.cpp143 WithColor &WithColor::changeColor(raw_ostream::Colors Color, bool Bold, in changeColor()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DEHPersonalities.cpp135 ColorVector &Colors = BlockColors[Visiting]; in colorEHFunclets() local
136 if (!is_contained(Colors, Color)) in colorEHFunclets()
137 Colors.push_back(Color); in colorEHFunclets()
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp27 static const enum raw_ostream::Colors noteColor = raw_ostream::CYAN;
28 static const enum raw_ostream::Colors remarkColor =
30 static const enum raw_ostream::Colors fixitColor =
32 static const enum raw_ostream::Colors caretColor =
34 static const enum raw_ostream::Colors warningColor =
36 static const enum raw_ostream::Colors templateColor =
38 static const enum raw_ostream::Colors errorColor = raw_ostream::RED;
39 static const enum raw_ostream::Colors fatalColor = raw_ostream::RED;
41 static const enum raw_ostream::Colors savedColor =
/freebsd-14.2/bin/ls/
H A Dprint.c85 typedef enum Colors { enum
100 } Colors; typedef
547 printcolor_termcap(Colors c) in printcolor_termcap()
569 printcolor_ansi(Colors c) in printcolor_ansi()
586 printcolor(Colors c) in printcolor()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTDumperUtils.h30 llvm::raw_ostream::Colors Color;
/freebsd-14.2/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()
210 if (Colors.count(N)) in color()
216 Colors[N] = other(P.second); in color()
235 if (!Colors.count(N)) in color()
263 Colors[N] = ColorN; in color()
264 Colors[C] = ColorC; in color()
269 if (Colors.count(I) == 0) in color()
[all …]
/freebsd-14.2/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-14.2/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-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DMarkupFilter.h152 std::optional<raw_ostream::Colors> Color;
/freebsd-14.2/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