Lines Matching refs:CurTok
119 if (CurTok != tok_then)
126 if (CurTok != tok_else)
142 switch (CurTok) {
489 if (CurTok != tok_identifier)
495 if (CurTok != '=')
502 if (CurTok != ',')
511 if (CurTok == ',') {
517 if (CurTok != tok_in)
936 /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current
938 /// lexer and updates CurTok with its results.
939 static int CurTok;
941 return CurTok = gettok();
950 if (!isascii(CurTok))
954 int TokPrec = BinopPrecedence[CurTok];
974 if (CurTok != '(') // Simple variable ref.
980 if (CurTok != ')') {
986 if (CurTok == ')') break;
988 if (CurTok != ',')
1013 if (CurTok != ')')
1027 if (CurTok != tok_then)
1034 if (CurTok != tok_else)
1049 if (CurTok != tok_identifier)
1055 if (CurTok != '=')
1062 if (CurTok != ',')
1071 if (CurTok == ',') {
1077 if (CurTok != tok_in)
1094 switch (CurTok) {
1117 int BinOp = CurTok;
1150 if (CurTok != tok_identifier)
1156 if (CurTok != '(')
1162 if (CurTok != ')')
1523 switch (CurTok) {