Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DWithColor.cpp44 WithColor::WithColor(raw_ostream &OS, HighlightColor Color, ColorMode Mode) in WithColor()
49 case HighlightColor::Address: in WithColor()
52 case HighlightColor::String: in WithColor()
55 case HighlightColor::Tag: in WithColor()
58 case HighlightColor::Attribute: in WithColor()
61 case HighlightColor::Enumerator: in WithColor()
64 case HighlightColor::Macro: in WithColor()
67 case HighlightColor::Error: in WithColor()
70 case HighlightColor::Warning: in WithColor()
73 case HighlightColor::Note: in WithColor()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DDebuggerEvents.cpp65 llvm::HighlightColor color = m_type == Type::Warning in Dump()
66 ? llvm::HighlightColor::Warning in Dump()
67 : llvm::HighlightColor::Error; in Dump()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DWithColor.h26 enum class HighlightColor { enum
61 WithColor(raw_ostream &OS, HighlightColor S,
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandReturnObject.cpp18 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Error, in error()
24 return llvm::WithColor(strm.AsRawOstream(), llvm::HighlightColor::Warning, in warning()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugMacro.cpp59 WithColor(OS, HighlightColor::Macro).get() in dump()
63 WithColor(OS, HighlightColor::Macro).get() << MacinfoString(E.Type); in dump()
H A DDWARFDie.cpp118 WithColor(OS, HighlightColor::Attribute) << formatv("{0}", Attr); in dumpAttribute()
131 auto Color = HighlightColor::Enumerator; in dumpAttribute()
133 Color = HighlightColor::String; in dumpAttribute()
579 WithColor(OS, HighlightColor::Address).get() in dump()
585 WithColor(OS, HighlightColor::Tag).get().indent(Indent) in dump()
H A DDWARFFormValue.cpp411 ? WithColor(OS, HighlightColor::Address).get() in dump()
612 WithColor(OS, HighlightColor::Address).get() in dump()
621 auto COS = WithColor(OS, HighlightColor::String); in dumpString()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/Symbolize/
H A DMarkupFilter.cpp705 WithColor(errs().indent(Loc - Line.begin()), HighlightColor::String) << '^'; in reportLocation()