Lines Matching defs:NextTok
1244 AsmToken NextTok;
1245 MutableArrayRef<AsmToken> Buf(NextTok);
1247 if (ReadCount && NextTok.is(AsmToken::Identifier) &&
1248 (NextTok.getString().equals_insensitive("equ") ||
1249 NextTok.getString().equals_insensitive("textequ"))) {
3881 const AsmToken NextTok = peekTok();
3882 if (NextTok.is(AsmToken::Identifier) &&
3883 NextTok.getString().equals_insensitive("dup")) {
4242 const AsmToken NextTok = peekTok();
4243 if (NextTok.is(AsmToken::Identifier) &&
4244 NextTok.getString().equals_insensitive("dup")) {
4509 AsmToken NextTok = getTok();
4511 if (NextTok.isNot(AsmToken::Comma) &&
4512 NextTok.isNot(AsmToken::EndOfStatement) &&
4518 return Error(NextTok.getLoc(), "alignment must be a power of two; was " +