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.h690 std::optional<Match> TheMatch;
693 : TheMatch(Match{MatchPos, MatchLen}), TheError(std::move(E)) {}
694 MatchResult(Match M, Error E) : TheMatch(M), TheError(std::move(E)) {}
716 std::optional<Match> TheMatch; global() member
H A DFileCheck.cpp1166 Match TheMatch; in match() local
1167 TheMatch.Pos = FullMatch.data() - Buffer.data() + MatchStartSkip; in match()
1168 TheMatch.Len = FullMatch.size() - MatchStartSkip; in match()
1185 return MatchResult(TheMatch, Error::success()); in match()
2001 Buffer, MatchResult.TheMatch->Pos, in printMatch()
2002 MatchResult.TheMatch->Len, Diags); in printMatch()
2135 if (MatchResult.TheMatch) in reportMatchResult()
2203 size_t MatchPos = MatchResult.TheMatch->Pos; in Check()
2208 LastMatchEnd += MatchPos + MatchResult.TheMatch->Len; in Check()
2385 MatchLen = MatchResult.TheMatch->Len; in CheckDag()
[all …]