Searched refs:nexttok (Results 1 – 3 of 3) sorted by relevance
116 nexttok = next(tokens)117 while nexttok == '!':119 nexttok = next(tokens)121 if nexttok == '(':122 sub, nexttok = _parse(tokens)124 if nexttok != ')':126 elif nexttok == 'n':127 result = '%s%s' % (result, nexttok)130 value = int(nexttok, 10)132 raise _error(nexttok) from None[all …]
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 …]
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()