Lines Matching refs:AsmLexer
34 AsmLexer::AsmLexer(const MCAsmInfo &MAI) : MAI(MAI) { in AsmLexer() function in AsmLexer
39 AsmLexer::~AsmLexer() = default;
41 void AsmLexer::setBuffer(StringRef Buf, const char *ptr, in setBuffer()
56 AsmToken AsmLexer::ReturnError(const char *Loc, const std::string &Msg) { in ReturnError()
62 int AsmLexer::getNextChar() { in getNextChar()
68 int AsmLexer::peekNextChar() { in peekNextChar()
77 AsmToken AsmLexer::LexFloatLiteral() { in LexFloatLiteral()
106 AsmToken AsmLexer::LexHexFloatLiteral(bool NoIntDigits) { in LexHexFloatLiteral()
153 AsmToken AsmLexer::LexIdentifier() { in LexIdentifier()
179 AsmToken AsmLexer::LexSlash() { in LexSlash()
222 AsmToken AsmLexer::LexLineComment() { in LexLineComment()
325 AsmToken AsmLexer::LexDigit() { in LexDigit()
568 AsmToken AsmLexer::LexSingleQuote() { in LexSingleQuote()
626 AsmToken AsmLexer::LexQuote() { in LexQuote()
664 StringRef AsmLexer::LexUntilEndOfStatement() { in LexUntilEndOfStatement()
675 StringRef AsmLexer::LexUntilEndOfLine() { in LexUntilEndOfLine()
684 size_t AsmLexer::peekTokens(MutableArrayRef<AsmToken> Buf, in peekTokens()
709 bool AsmLexer::isAtStartOfComment(const char *Ptr) { in isAtStartOfComment()
725 bool AsmLexer::isAtStatementSeparator(const char *Ptr) { in isAtStatementSeparator()
730 AsmToken AsmLexer::LexToken() { in LexToken()