Home
last modified time | relevance | path

Searched refs:nextTok (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/Parse/
DParseStmt.cpp121 StatementFilterCCC(Token nextTok) : NextToken(nextTok) { in StatementFilterCCC() argument
122 WantTypeSpecifiers = nextTok.is(tok::l_paren) || nextTok.is(tok::less) || in StatementFilterCCC()
123 nextTok.is(tok::identifier) || nextTok.is(tok::star) || in StatementFilterCCC()
124 nextTok.is(tok::amp) || nextTok.is(tok::l_square); in StatementFilterCCC()
125 WantExpressionKeywords = nextTok.is(tok::l_paren) || in StatementFilterCCC()
126 nextTok.is(tok::identifier) || in StatementFilterCCC()
127 nextTok.is(tok::arrow) || nextTok.is(tok::period); in StatementFilterCCC()
128 WantRemainingKeywords = nextTok.is(tok::l_paren) || nextTok.is(tok::semi) || in StatementFilterCCC()
129 nextTok.is(tok::identifier) || in StatementFilterCCC()
130 nextTok.is(tok::l_brace); in StatementFilterCCC()
/external/llvm/lib/Target/Mips/AsmParser/
DMipsAsmParser.cpp1773 const AsmToken &nextTok = Parser.getTok(); in parseRelocOperand() local
1774 if (nextTok.isNot(AsmToken::Identifier)) in parseRelocOperand()
1777 Str += nextTok.getIdentifier(); in parseRelocOperand()