Searched refs:nexttok (Results 1 – 3 of 3) sorted by relevance
114 nexttok = next(tokens)115 while nexttok == '!':117 nexttok = next(tokens)119 if nexttok == '(':120 sub, nexttok = _parse(tokens)122 if nexttok != ')':124 elif nexttok == 'n':125 result = '%s%s' % (result, nexttok)128 value = int(nexttok, 10)130 raise _error(nexttok)[all …]
117 nexttok = next(tokens)118 while nexttok == '!':120 nexttok = next(tokens)122 if nexttok == '(':123 sub, nexttok = _parse(tokens)125 if nexttok != ')':127 elif nexttok == 'n':128 result = '%s%s' % (result, nexttok)131 value = int(nexttok, 10)133 raise _error(nexttok) from None[all …]
225 String nexttok = getNextId(); in match() local226 Integer cur = (Integer) currentLexer.get(nexttok.toUpperCase()); in match()230 buffer + "\nUnexpected Token : " + nexttok, in match()233 this.currentMatch.tokenValue = nexttok; in match()