Searched refs:TheMatch (Results 1 – 2 of 2) sorted by relevance
739 Optional<Match> TheMatch; member742 : TheMatch(Match{MatchPos, MatchLen}), TheError(std::move(E)) {} in MatchResult()743 MatchResult(Match M, Error E) : TheMatch(M), TheError(std::move(E)) {} in MatchResult()
1311 Match TheMatch; in match() local1312 TheMatch.Pos = FullMatch.data() - Buffer.data() + MatchStartSkip; in match()1313 TheMatch.Len = FullMatch.size() - MatchStartSkip; in match()1329 return MatchResult(TheMatch, Value.takeError()); in match()1333 return MatchResult(TheMatch, Error::success()); in match()2070 Buffer, MatchResult.TheMatch->Pos, in printMatch()2071 MatchResult.TheMatch->Len, Diags); in printMatch()2204 if (MatchResult.TheMatch) in reportMatchResult()2272 size_t MatchPos = MatchResult.TheMatch->Pos; in Check()2277 LastMatchEnd += MatchPos + MatchResult.TheMatch->Len; in Check()[all …]