Lines Matching refs:NextTok
1246 AsmToken NextTok; in Lex() local
1247 MutableArrayRef<AsmToken> Buf(NextTok); in Lex()
1249 if (ReadCount && NextTok.is(AsmToken::Identifier) && in Lex()
1250 (NextTok.getString().equals_insensitive("equ") || in Lex()
1251 NextTok.getString().equals_insensitive("textequ"))) { in Lex()
3882 const AsmToken NextTok = peekTok(); in parseRealInstList() local
3883 if (NextTok.is(AsmToken::Identifier) && in parseRealInstList()
3884 NextTok.getString().equals_insensitive("dup")) { in parseRealInstList()
4243 const AsmToken NextTok = peekTok(); in parseStructInstList() local
4244 if (NextTok.is(AsmToken::Identifier) && in parseStructInstList()
4245 NextTok.getString().equals_insensitive("dup")) { in parseStructInstList()
4510 AsmToken NextTok = getTok(); in parseDirectiveStruct() local
4512 if (NextTok.isNot(AsmToken::Comma) && in parseDirectiveStruct()
4513 NextTok.isNot(AsmToken::EndOfStatement) && in parseDirectiveStruct()
4519 return Error(NextTok.getLoc(), "alignment must be a power of two; was " + in parseDirectiveStruct()