Lines Matching defs:CurTok
203 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
205 /// lexer and updates CurTok with its results.
206 static int CurTok;
207 static int getNextToken() { return CurTok = gettok(); }
215 if (!isascii(CurTok))
219 int TokPrec = BinopPrecedence[CurTok];
252 if (CurTok != ')')
266 if (CurTok != '(') // Simple variable ref.
272 if (CurTok != ')') {
279 if (CurTok == ')')
282 if (CurTok != ',')
299 switch (CurTok) {
325 int BinOp = CurTok;
362 if (CurTok != tok_identifier)
368 if (CurTok != '(')
374 if (CurTok != ')')
662 switch (CurTok) {