Lines Matching defs:Match
121 /// \brief Expect 'Match' *not* to occur at the given 'Line' and 'Column'.
124 void DisallowMatch(Twine Match, unsigned Line, unsigned Column) {
125 DisallowedMatches.push_back(MatchCandidate(Match, Line, Column));
128 /// \brief Expect 'Match' to occur at the given 'Line' and 'Column'.
134 void ExpectMatch(Twine Match, unsigned Line, unsigned Column,
136 ExpectedMatches.push_back(ExpectedMatch(Match, Line, Column, Times));
157 void Match(StringRef Name, SourceLocation Location) {
207 MatchCandidate const &Match) {
208 return Stream << Match.ExpectedName
209 << " at " << Match.LineNumber << ":" << Match.ColumnNumber;