Lines Matching refs:CurTok
179 static int CurTok; variable
180 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
188 if (!isascii(CurTok)) in GetTokPrecedence()
192 int TokPrec = BinopPrecedence[CurTok]; in GetTokPrecedence()
225 if (CurTok != ')') in ParseParenExpr()
239 if (CurTok != '(') // Simple variable ref. in ParseIdentifierExpr()
245 if (CurTok != ')') { in ParseIdentifierExpr()
252 if (CurTok == ')') in ParseIdentifierExpr()
255 if (CurTok != ',') in ParseIdentifierExpr()
272 switch (CurTok) { in ParsePrimary()
298 int BinOp = CurTok; in ParseBinOpRHS()
335 if (CurTok != tok_identifier) in ParsePrototype()
341 if (CurTok != '(') in ParsePrototype()
347 if (CurTok != ')') in ParsePrototype()
608 switch (CurTok) { in MainLoop()