Lines Matching refs:CurTok
173 static int CurTok; variable
174 static int getNextToken() { return CurTok = gettok(); } in getNextToken()
182 if (!isascii(CurTok)) in GetTokPrecedence()
186 int TokPrec = BinopPrecedence[CurTok]; in GetTokPrecedence()
219 if (CurTok != ')') in ParseParenExpr()
233 if (CurTok != '(') // Simple variable ref. in ParseIdentifierExpr()
239 if (CurTok != ')') { in ParseIdentifierExpr()
246 if (CurTok == ')') in ParseIdentifierExpr()
249 if (CurTok != ',') in ParseIdentifierExpr()
266 switch (CurTok) { in ParsePrimary()
292 int BinOp = CurTok; in ParseBinOpRHS()
329 if (CurTok != tok_identifier) in ParsePrototype()
335 if (CurTok != '(') in ParsePrototype()
341 if (CurTok != ')') in ParsePrototype()
544 switch (CurTok) { in MainLoop()