Home
last modified time | relevance | path

Searched refs:CurrentLine (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DLineIterator.h39 StringRef CurrentLine; variable
80 StringRef operator*() const { return CurrentLine; }
81 const StringRef *operator->() const { return &CurrentLine; }
85 LHS.CurrentLine.begin() == RHS.CurrentLine.begin();
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DLineIterator.cpp42 CurrentLine(Buffer.getBufferSize() ? Buffer.getBufferStart() : nullptr, in line_iterator()
57 const char *Pos = CurrentLine.end(); in advance()
86 CurrentLine = StringRef(); in advance()
96 CurrentLine = StringRef(Pos, Length); in advance()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp89 DILineInfo CurrentLine = getLineInfoForAddress(Address, Specifier); in getInliningInfoForAddress() local
95 InlineInfo.addFrame(CurrentLine); in getInliningInfoForAddress()
101 InlineInfo.addFrame(CurrentLine); in getInliningInfoForAddress()
125 InlineInfo.addFrame(CurrentLine); in getInliningInfoForAddress()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
H A DCoverageExporterLcov.cpp137 unsigned CurrentLine = NextBranch->LineStart; in renderBranchExecutionCounts() local
141 while (NextBranch != EndBranch && CurrentLine == NextBranch->LineStart) { in renderBranchExecutionCounts()
148 OS << "BRDA:" << CurrentLine << ',' << PairIndex << ',' in renderBranchExecutionCounts()
H A DCodeCoverage.cpp333 unsigned CurrentLine = NextBranch->LineStart; in attachBranchSubViews() local
335 while (NextBranch != EndBranch && CurrentLine == NextBranch->LineStart) in attachBranchSubViews()
341 View.addBranch(CurrentLine, ViewBranches, std::move(SubView)); in attachBranchSubViews()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DFormat.cpp1891 unsigned CurrentLine, unsigned &NewLine, in checkEmptyNamespace() argument
1893 unsigned InitLine = CurrentLine, End = AnnotatedLines.size(); in checkEmptyNamespace()
1898 if (!AnnotatedLines[++CurrentLine]->startsWith(tok::l_brace)) { in checkEmptyNamespace()
1899 NewLine = CurrentLine; in checkEmptyNamespace()
1902 } else if (!AnnotatedLines[CurrentLine]->endsWith(tok::l_brace)) { in checkEmptyNamespace()
1905 while (++CurrentLine < End) { in checkEmptyNamespace()
1906 if (AnnotatedLines[CurrentLine]->startsWith(tok::r_brace)) in checkEmptyNamespace()
1909 if (AnnotatedLines[CurrentLine]->startsWithNamespace()) { in checkEmptyNamespace()
1910 if (!checkEmptyNamespace(AnnotatedLines, CurrentLine, NewLine, in checkEmptyNamespace()
1913 CurrentLine = NewLine; in checkEmptyNamespace()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DPerfReader.h29 std::string CurrentLine; variable
43 return CurrentLine; in getCurrentLine()
52 if (!std::getline(Fin, CurrentLine)) { in advance()