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