Home | History | Annotate | Download | only in Tooling

Lines Matching refs:Match

103   /// \brief Expect 'Match' *not* to occur at the given 'Line' and 'Column'.
106 void DisallowMatch(Twine Match, unsigned Line, unsigned Column) {
107 DisallowedMatches.push_back(MatchCandidate(Match, Line, Column));
110 /// \brief Expect 'Match' to occur at the given 'Line' and 'Column'.
114 void ExpectMatch(Twine Match, unsigned Line, unsigned Column) {
115 ExpectedMatches.push_back(ExpectedMatch(Match, Line, Column));
128 /// \brief Checks an actual match against expected and disallowed matches.
132 void Match(StringRef Name, SourceLocation Location) {
179 MatchCandidate const &Match) {
180 return Stream << Match.ExpectedName
181 << " at " << Match.LineNumber << ":" << Match.ColumnNumber;
195 Stream << ", partial match: \"" << Name << "\" at ";