Home
last modified time | relevance | path

Searched refs:tokeneater (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/
Dtokenize.py156 def tokenize(readline, tokeneater=printtoken): argument
170 tokenize_loop(readline, tokeneater)
175 def tokenize_loop(readline, tokeneater): argument
177 tokeneater(*token_info)
Dinspect.py640 def tokeneater(self, type, token, srow_scol, erow_ecol, line): member in BlockFinder
676 tokenize.tokenize(iter(lines).next, blockfinder.tokeneater)
/external/python/cpython2/Tools/scripts/
Dcheckappend.py106 tokenize.tokenize(self.file.readline, self.tokeneater)
112 def tokeneater(self, type, token, start, end, line, member in AppendChecker
Dreindent.py188 tokenize.tokenize(self.getline, self.tokeneater)
269 def tokeneater(self, type, token, (sline, scol), end, line, member in Reindenter
/external/python/cpython2/Doc/library/
Dtabnanny.rst50 Raised by :func:`tokeneater` if detecting an ambiguous indent. Captured and
54 .. function:: tokeneater(type, token, start, end, line)
Dtokenize.rst48 .. function:: tokenize(readline[, tokeneater])
62 The second parameter, *tokeneater*, must also be a callable object. It is
68 the *tokeneater* function by :func:`.tokenize`:
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtokenize.py160 def tokenize(readline, tokeneater=printtoken): argument
174 tokenize_loop(readline, tokeneater)
179 def tokenize_loop(readline, tokeneater): argument
181 tokeneater(*token_info)
/external/autotest/utils/
Dreindent.py176 tokenize.tokenize(self.getline, self.tokeneater)
257 def tokeneater(self, type, token, (sline, scol), end, line, member in Reindenter
/external/python/cpython2/Lib/idlelib/
DEditorWindow.py1613 def tokeneater(self, type, token, start, end, line, member in IndentSearcher
1630 _tokenize.tokenize(self.readline, self.tokeneater)