Lines Matching defs:Msg
56 bool MCAsmParser::parseEOL(const Twine &Msg) {
58 return Error(getTok().getLoc(), Msg);
63 bool MCAsmParser::parseToken(AsmToken::TokenKind T, const Twine &Msg) {
65 return parseEOL(Msg);
67 return Error(getTok().getLoc(), Msg);
72 bool MCAsmParser::parseIntToken(int64_t &V, const Twine &Msg) {
74 return TokError(Msg);
87 bool MCAsmParser::check(bool P, const Twine &Msg) {
88 return check(P, getTok().getLoc(), Msg);
91 bool MCAsmParser::check(bool P, SMLoc Loc, const Twine &Msg) {
93 return Error(Loc, Msg);
97 bool MCAsmParser::TokError(const Twine &Msg, SMRange Range) {
98 return Error(getLexer().getLoc(), Msg, Range);
101 bool MCAsmParser::Error(SMLoc L, const Twine &Msg, SMRange Range) {
104 Msg.toVector(PErr.Msg);
121 Suffix.toVector(PErr.Msg);