• Home
  • Raw
  • Download

Lines Matching refs:getNextToken

267 static int getNextToken() { return CurTok = gettok(); }  in getNextToken()  function
301 getNextToken(); // consume the number in ParseNumberExpr()
307 getNextToken(); // eat (. in ParseParenExpr()
314 getNextToken(); // eat ). in ParseParenExpr()
324 getNextToken(); // eat identifier. in ParseIdentifierExpr()
330 getNextToken(); // eat ( in ParseIdentifierExpr()
344 getNextToken(); in ParseIdentifierExpr()
349 getNextToken(); in ParseIdentifierExpr()
356 getNextToken(); // eat the if. in ParseIfExpr()
365 getNextToken(); // eat the then in ParseIfExpr()
374 getNextToken(); in ParseIfExpr()
386 getNextToken(); // eat the for. in ParseForExpr()
392 getNextToken(); // eat identifier. in ParseForExpr()
396 getNextToken(); // eat '='. in ParseForExpr()
403 getNextToken(); in ParseForExpr()
412 getNextToken(); in ParseForExpr()
420 getNextToken(); // eat 'in'. in ParseForExpr()
463 getNextToken(); in ParseUnary()
484 getNextToken(); // eat binop in ParseBinOpRHS()
533 getNextToken(); in ParsePrototype()
536 getNextToken(); in ParsePrototype()
542 getNextToken(); in ParsePrototype()
545 getNextToken(); in ParsePrototype()
551 getNextToken(); in ParsePrototype()
558 getNextToken(); in ParsePrototype()
567 while (getNextToken() == tok_identifier) in ParsePrototype()
573 getNextToken(); // eat ')'. in ParsePrototype()
585 getNextToken(); // eat def. in ParseDefinition()
608 getNextToken(); // eat extern. in ParseExtern()
959 getNextToken(); in HandleDefinition()
972 getNextToken(); in HandleExtern()
999 getNextToken(); in HandleTopLevelExpression()
1011 getNextToken(); in MainLoop()
1060 getNextToken(); in main()