Lines Matching defs:CurTok
142 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
144 /// lexer and updates CurTok with its results.
145 static int CurTok;
147 return CurTok = gettok();
156 if (!isascii(CurTok))
160 int TokPrec = BinopPrecedence[CurTok];
180 if (CurTok != '(') // Simple variable ref.
186 if (CurTok != ')') {
192 if (CurTok == ')') break;
194 if (CurTok != ',')
219 if (CurTok != ')')
230 switch (CurTok) {
251 int BinOp = CurTok;
284 if (CurTok != tok_identifier)
290 if (CurTok != '(')
296 if (CurTok != ')')
368 switch (CurTok) {