Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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();
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DFormat.cpp1942 unsigned InitLine = CurrentLine, End = AnnotatedLines.size(); in checkEmptyNamespace()
1948 NewLine = CurrentLine; in checkEmptyNamespace()
1954 while (++CurrentLine < End) { in checkEmptyNamespace()
1955 if (AnnotatedLines[CurrentLine]->startsWith(tok::r_brace)) in checkEmptyNamespace()
1958 if (AnnotatedLines[CurrentLine]->startsWithNamespace()) { in checkEmptyNamespace()
1962 CurrentLine = NewLine; in checkEmptyNamespace()
1966 if (containsOnlyComments(*AnnotatedLines[CurrentLine])) in checkEmptyNamespace()
1971 NewLine = CurrentLine; in checkEmptyNamespace()
1975 NewLine = CurrentLine; in checkEmptyNamespace()
1976 if (CurrentLine >= End) in checkEmptyNamespace()
[all …]