Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheckImpl.h714 std::optional<Match> TheMatch; member
717 : TheMatch(Match{MatchPos, MatchLen}), TheError(std::move(E)) {} in MatchResult()
718 MatchResult(Match M, Error E) : TheMatch(M), TheError(std::move(E)) {} in MatchResult()
H A DFileCheck.cpp1205 Match TheMatch; in match() local
1206 TheMatch.Pos = FullMatch.data() - Buffer.data() + MatchStartSkip; in match()
1207 TheMatch.Len = FullMatch.size() - MatchStartSkip; in match()
1224 return MatchResult(TheMatch, Error::success()); in match()
2038 Buffer, MatchResult.TheMatch->Pos, in printMatch()
2039 MatchResult.TheMatch->Len, Diags); in printMatch()
2172 if (MatchResult.TheMatch) in reportMatchResult()
2240 size_t MatchPos = MatchResult.TheMatch->Pos; in Check()
2245 LastMatchEnd += MatchPos + MatchResult.TheMatch->Len; in Check()
2422 MatchLen = MatchResult.TheMatch->Len; in CheckDag()
[all …]