HomeSort by relevance Sort by last modified time
    Searched defs:ReturnError (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 44 /// ReturnError - Set the error to the specified string at the specified
46 AsmToken AsmLexer::ReturnError(const char *Loc, const std::string &Msg) {
133 return ReturnError(TokStart, "unterminated comment");
192 return ReturnError(TokStart, "invalid decimal number");
217 return ReturnError(TokStart, "invalid binary number");
223 return ReturnError(TokStart, "invalid binary number");
240 return ReturnError(CurPtr-2, "invalid hexadecimal number");
244 return ReturnError(TokStart, "invalid hexadecimal number");
261 return ReturnError(TokStart, "invalid octal number");
278 return ReturnError(TokStart, "unterminated single quote")
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.cpp 39 /// ReturnError - Set the error to the specified string at the specified
41 tgtok::TokKind TGLexer::ReturnError(const char *Loc, const Twine &Msg) {
99 return ReturnError(TokStart, "Unexpected character");
132 return ReturnError(TokStart, "Unexpected character");
190 return ReturnError(StrStart, "End of file in string literal");
193 return ReturnError(StrStart, "End of line in string literal");
218 return ReturnError(CurPtr, "escaped newlines not supported in tblgen");
223 return ReturnError(StrStart, "End of file in string literal");
226 return ReturnError(CurPtr, "invalid escape in string literal");
236 return ReturnError(TokStart, "Invalid variable name")
    [all...]

Completed in 41 milliseconds