Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/tools/llvm-cov/
H A DSourceCoverageViewText.cpp105 Optional<raw_ostream::Colors> Highlight; in renderLine() local
111 Highlight = raw_ostream::RED; in renderLine()
117 colored_ostream(OS, Highlight ? *Highlight : raw_ostream::SAVEDCOLOR, in renderLine()
118 getOptions().Colors && Highlight, /*Bold=*/false, in renderLine()
121 if (getOptions().Debug && Highlight) in renderLine()
124 if ((!S->IsGapRegion || (Highlight && *Highlight == raw_ostream::RED)) && in renderLine()
126 Highlight = raw_ostream::RED; in renderLine()
128 Highlight = raw_ostream::CYAN; in renderLine()
130 Highlight = None; in renderLine()
134 colored_ostream(OS, Highlight ? *Highlight : raw_ostream::SAVEDCOLOR, in renderLine()
[all …]
H A DSourceCoverageViewHTML.cpp538 auto Highlight = [&](const std::string &Snippet, unsigned LC, unsigned RC) { in renderLine() local
552 Snippets[0] = Highlight(Snippets[0], 1, 1 + Snippets[0].size()); in renderLine()
565 Snippets[I + 1] = Highlight(Snippets[I + 1], CurSeg->Col, in renderLine()
570 Snippets.back() = Highlight(Snippets.back(), 1, 1 + Snippets.back().size()); in renderLine()
/llvm-project-15.0.7/lldb/source/Core/
H A DHighlighter.cpp28 void DefaultHighlighter::Highlight(const HighlightStyle &options, in Highlight() function in DefaultHighlighter
73 std::string Highlighter::Highlight(const HighlightStyle &options, in Highlight() function in Highlighter
78 Highlight(options, line, cursor_pos, previous_lines, s); in Highlight()
H A DSourceManager.cpp609 h.Highlight(style, ref, column, "", *s); in DisplaySourceLines()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DHighlighter.h114 virtual void Highlight(const HighlightStyle &options, llvm::StringRef line,
119 std::string Highlight(const HighlightStyle &options, llvm::StringRef line,
130 void Highlight(const HighlightStyle &options, llvm::StringRef line,
/llvm-project-15.0.7/lldb/unittests/Language/Highlighting/
H A DHighlighterTest.cpp81 std::string output = h.Highlight(style, code, llvm::Optional<size_t>()); in TEST_F()
90 return mgr.getDefaultHighlighter().Highlight(style, code, cursor); in highlightDefault()
121 return h.Highlight(style, code, cursor); in highlightC()
/llvm-project-15.0.7/lldb/source/Plugins/Language/ClangCommon/
H A DClangHighlighter.h26 void Highlight(const HighlightStyle &options, llvm::StringRef line,
H A DClangHighlighter.cpp132 void ClangHighlighter::Highlight(const HighlightStyle &options, in Highlight() function in ClangHighlighter
/llvm-project-15.0.7/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp108 const char *Highlight() const { return Green(); } in Highlight() function in __anonbb22c1e80111::Decorator
287 Buffer.append("%s", Decor.Highlight()); in PrintMemorySnippet()
/llvm-project-15.0.7/llvm/utils/vim/
H A Dvimrc19 " Highlight trailing whitespace and lines longer than 80 columns.
56 " Highlight syntax in programming languages
/llvm-project-15.0.7/llvm/test/Analysis/ScalarEvolution/
H A Dranges.ll24 ; Highlight the fact that non-argument non-instructions are
/llvm-project-15.0.7/llvm/test/Transforms/GVN/PRE/
H A Dload-pre-licm.ll159 ; Highlight that we can PRE into a latch block when there are multiple
197 ; Highlight the fact that we can PRE into a single clobbering latch block
/llvm-project-15.0.7/llvm/test/Transforms/InstCombine/
H A Dcall-guard.ll114 ; Highlight the limit of the window in a case which would otherwise be mergable
/llvm-project-15.0.7/polly/docs/
H A DHowToManuallyUseTheIndividualPiecesOfPolly.rst77 4. **Highlight the detected SCoPs in the CFGs of the program (requires graphviz/dotty)**
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DXRefs.cpp1258 if (auto Highlight = toHighlight(Loc, AST.getTokens())) in findDocumentHighlights() local
1259 Result.push_back(std::move(*Highlight)); in findDocumentHighlights()