Home
last modified time | relevance | path

Searched refs:HighlightColor (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DWithColor.cpp21 WithColor::WithColor(raw_ostream &OS, HighlightColor Color, bool DisableColors) in WithColor()
26 case HighlightColor::Address: in WithColor()
29 case HighlightColor::String: in WithColor()
32 case HighlightColor::Tag: in WithColor()
35 case HighlightColor::Attribute: in WithColor()
38 case HighlightColor::Enumerator: in WithColor()
41 case HighlightColor::Macro: in WithColor()
44 case HighlightColor::Error: in WithColor()
47 case HighlightColor::Warning: in WithColor()
50 case HighlightColor::Note: in WithColor()
[all …]
/external/llvm-project/llvm/lib/Support/
DWithColor.cpp21 WithColor::WithColor(raw_ostream &OS, HighlightColor Color, ColorMode Mode) in WithColor()
26 case HighlightColor::Address: in WithColor()
29 case HighlightColor::String: in WithColor()
32 case HighlightColor::Tag: in WithColor()
35 case HighlightColor::Attribute: in WithColor()
38 case HighlightColor::Enumerator: in WithColor()
41 case HighlightColor::Macro: in WithColor()
44 case HighlightColor::Error: in WithColor()
47 case HighlightColor::Warning: in WithColor()
50 case HighlightColor::Note: in WithColor()
[all …]
/external/llvm-project/llvm/unittests/Support/
DWithColorTest.cpp20 WithColor(OS, HighlightColor::Error, ColorMode::Disable) << "test"; in TEST()
29 WithColor(OS, HighlightColor::Error, ColorMode::Auto) << "test"; in TEST()
39 WithColor(OS, HighlightColor::Error, ColorMode::Enable) << "test"; in TEST()
/external/llvm/lib/DebugInfo/DWARF/
DSyntaxHighlighting.h20 enum HighlightColor { Address, String, Tag, Attribute, Enumerator, Macro }; enum
29 WithColor(llvm::raw_ostream &OS, enum HighlightColor Type);
DSyntaxHighlighting.cpp21 WithColor::WithColor(llvm::raw_ostream &OS, enum HighlightColor Type) : OS(OS) { in WithColor()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DWithColor.h22 enum class HighlightColor { enum
47 WithColor(raw_ostream &OS, HighlightColor S, bool DisableColors = false);
/external/llvm-project/llvm/include/llvm/Support/
DWithColor.h26 enum class HighlightColor { enum
62 WithColor(raw_ostream &OS, HighlightColor S,
/external/llvm-project/lldb/source/Interpreter/
DCommandReturnObject.cpp18 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Error, in error()
24 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Warning, in warning()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFDebugMacro.cpp56 WithColor(OS, HighlightColor::Macro).get() in dump()
60 WithColor(OS, HighlightColor::Macro).get() << MacinfoString(E.Type); in dump()
DDWARFDie.cpp241 WithColor(OS, HighlightColor::Attribute) << formatv("{0}", Attr); in dumpAttribute()
253 auto Color = HighlightColor::Enumerator; in dumpAttribute()
255 Color = HighlightColor::String; in dumpAttribute()
622 WithColor(OS, HighlightColor::Address).get() in dump()
628 WithColor(OS, HighlightColor::Tag).get().indent(Indent) in dump()
DDWARFFormValue.cpp394 ? WithColor(OS, HighlightColor::Address).get() in dump()
575 WithColor(OS, HighlightColor::Address).get() in dump()
585 auto COS = WithColor(OS, HighlightColor::String); in dumpString()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDie.cpp242 WithColor(OS, HighlightColor::Attribute) << formatv("{0}", Attr); in dumpAttribute()
254 auto Color = HighlightColor::Enumerator; in dumpAttribute()
256 Color = HighlightColor::String; in dumpAttribute()
586 WithColor(OS, HighlightColor::Address).get() in dump()
592 WithColor(OS, HighlightColor::Tag).get().indent(Indent) in dump()
DDWARFDebugMacro.cpp31 WithColor(OS, HighlightColor::Macro).get() << MacinfoString(E.Type); in dump()
DDWARFFormValue.cpp393 ? WithColor(OS, HighlightColor::Address).get() in dump()
573 WithColor(OS, HighlightColor::Address).get() in dump()
583 auto COS = WithColor(OS, HighlightColor::String); in dumpString()
/external/mesa3d/src/imgui/
Dimgui_memory_editor.h98 …ImU32 HighlightColor; // // background color of highlig… member
129 HighlightColor = IM_COL32(255, 255, 255, 50); in MemoryEditor()
310 …aw_list->AddRectFilled(pos, ImVec2(pos.x + highlight_width, pos.y + s.LineHeight), HighlightColor);