Lines Matching refs:getNextToken
282 static int getNextToken() { return CurTok = gettok(); } in getNextToken() function
316 getNextToken(); // consume the number in ParseNumberExpr()
322 getNextToken(); // eat (. in ParseParenExpr()
329 getNextToken(); // eat ). in ParseParenExpr()
339 getNextToken(); // eat identifier. in ParseIdentifierExpr()
345 getNextToken(); // eat ( in ParseIdentifierExpr()
359 getNextToken(); in ParseIdentifierExpr()
364 getNextToken(); in ParseIdentifierExpr()
371 getNextToken(); // eat the if. in ParseIfExpr()
380 getNextToken(); // eat the then in ParseIfExpr()
389 getNextToken(); in ParseIfExpr()
401 getNextToken(); // eat the for. in ParseForExpr()
407 getNextToken(); // eat identifier. in ParseForExpr()
411 getNextToken(); // eat '='. in ParseForExpr()
418 getNextToken(); in ParseForExpr()
427 getNextToken(); in ParseForExpr()
435 getNextToken(); // eat 'in'. in ParseForExpr()
478 getNextToken(); in ParseUnary()
499 getNextToken(); // eat binop in ParseBinOpRHS()
548 getNextToken(); in ParsePrototype()
551 getNextToken(); in ParsePrototype()
557 getNextToken(); in ParsePrototype()
560 getNextToken(); in ParsePrototype()
566 getNextToken(); in ParsePrototype()
573 getNextToken(); in ParsePrototype()
582 while (getNextToken() == tok_identifier) in ParsePrototype()
588 getNextToken(); // eat ')'. in ParsePrototype()
600 getNextToken(); // eat def. in ParseDefinition()
623 getNextToken(); // eat extern. in ParseExtern()
981 getNextToken(); in HandleDefinition()
995 getNextToken(); in HandleExtern()
1024 getNextToken(); in HandleTopLevelExpression()
1036 getNextToken(); in MainLoop()
1091 getNextToken(); in main()