Lines Matching defs:CurTok
154 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
156 /// lexer and updates CurTok with its results.
157 static int CurTok;
159 return CurTok = gettok();
168 if (!isascii(CurTok))
172 int TokPrec = BinopPrecedence[CurTok];
192 if (CurTok != '(') // Simple variable ref.
198 if (CurTok != ')') {
204 if (CurTok == ')') break;
206 if (CurTok != ',')
231 if (CurTok != ')')
242 switch (CurTok) {
263 int BinOp = CurTok;
296 if (CurTok != tok_identifier)
302 if (CurTok != '(')
308 if (CurTok != ')')
514 switch (CurTok) {