Lines Matching refs:CurTok
171 static int CurTok; variable
172 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
180 if (!isascii(CurTok)) in GetTokPrecedence()
184 int TokPrec = BinopPrecedence[CurTok]; in GetTokPrecedence()
216 if (CurTok != ')') in ParseParenExpr()
230 if (CurTok != '(') // Simple variable ref. in ParseIdentifierExpr()
236 if (CurTok != ')') { in ParseIdentifierExpr()
243 if (CurTok == ')') in ParseIdentifierExpr()
246 if (CurTok != ',') in ParseIdentifierExpr()
263 switch (CurTok) { in ParsePrimary()
289 int BinOp = CurTok; in ParseBinOpRHS()
326 if (CurTok != tok_identifier) in ParsePrototype()
332 if (CurTok != '(') in ParsePrototype()
338 if (CurTok != ')') in ParsePrototype()
412 switch (CurTok) { in MainLoop()