Lines Matching refs:Msg
69 bool Warning(SMLoc L, const Twine &Msg) { in Warning() argument
70 return getParser().Warning(L, Msg); in Warning()
73 bool Error(SMLoc L, const Twine &Msg, SMRange Range = SMRange()) {
74 return getParser().Error(L, Msg, Range);
77 void Note(SMLoc L, const Twine &Msg) { in Note() argument
78 getParser().Note(L, Msg); in Note()
81 bool TokError(const Twine &Msg) { in TokError() argument
82 return getParser().TokError(Msg); in TokError()
88 const Twine &Msg = "unexpected token") {
89 return getParser().parseToken(T, Msg);
103 bool check(bool P, const Twine &Msg) { in check() argument
104 return getParser().check(P, Msg); in check()
107 bool check(bool P, SMLoc Loc, const Twine &Msg) { in check() argument
108 return getParser().check(P, Loc, Msg); in check()