/external/python/cpython2/Lib/ |
D | tokenize.py | 156 def tokenize(readline, tokeneater=printtoken): argument 170 tokenize_loop(readline, tokeneater) 175 def tokenize_loop(readline, tokeneater): argument 177 tokeneater(*token_info)
|
D | inspect.py | 640 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/ |
D | checkappend.py | 106 tokenize.tokenize(self.file.readline, self.tokeneater) 112 def tokeneater(self, type, token, start, end, line, member in AppendChecker
|
D | reindent.py | 188 tokenize.tokenize(self.getline, self.tokeneater) 269 def tokeneater(self, type, token, (sline, scol), end, line, member in Reindenter
|
/external/python/cpython2/Doc/library/ |
D | tabnanny.rst | 50 Raised by :func:`tokeneater` if detecting an ambiguous indent. Captured and 54 .. function:: tokeneater(type, token, start, end, line)
|
D | tokenize.rst | 48 .. 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/ |
D | tokenize.py | 160 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/ |
D | reindent.py | 176 tokenize.tokenize(self.getline, self.tokeneater) 257 def tokeneater(self, type, token, (sline, scol), end, line, member in Reindenter
|
/external/python/cpython2/Lib/idlelib/ |
D | EditorWindow.py | 1613 def tokeneater(self, type, token, start, end, line, member in IndentSearcher 1630 _tokenize.tokenize(self.readline, self.tokeneater)
|