Searched refs:nexttok (Results 1 – 2 of 2) 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 …]
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()