Home
last modified time | relevance | path

Searched refs:MatchPos (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp2203 size_t MatchPos = MatchResult.TheMatch->Pos; in Check() local
2205 FirstMatchPos = LastPos + MatchPos; in Check()
2208 LastMatchEnd += MatchPos + MatchResult.TheMatch->Len; in Check()
2216 size_t MatchPos = FirstMatchPos - LastPos; in Check() local
2218 StringRef SkippedRegion = Buffer.substr(LastPos, MatchPos); in Check()
2224 Pat.getCheckTy(), MatchBuffer, MatchPos, MatchLen, in Check()
2233 Pat.getCheckTy(), MatchBuffer, MatchPos, MatchLen, in Check()
2367 size_t MatchLen = 0, MatchPos = StartPos; in CheckDag() local
2372 StringRef MatchBuffer = Buffer.substr(MatchPos); in CheckDag()
2388 MatchPos += MatchResult.TheMatch->Pos; in CheckDag()
[all …]
H A DFileCheckImpl.h692 MatchResult(size_t MatchPos, size_t MatchLen, Error E)
693 : TheMatch(Match{MatchPos, MatchLen}), TheError(std::move(E)) {}