Home
last modified time | relevance | path

Searched refs:nexttok (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/
Dgettext.py114 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 …]
/external/nist-sip/java/gov/nist/core/
DLexerCore.java225 String nexttok = getNextId(); in match() local
226 Integer cur = (Integer) currentLexer.get(nexttok.toUpperCase()); in match()
230 buffer + "\nUnexpected Token : " + nexttok, in match()
233 this.currentMatch.tokenValue = nexttok; in match()