/external/python/cpython2/Lib/lib2to3/pgen2/ |
D | token.py | 9 ENDMARKER = 0 variable 83 return x == ENDMARKER
|
/external/python/cpython2/Include/ |
D | token.h | 12 #define ENDMARKER 0 macro 74 #define ISEOF(x) ((x) == ENDMARKER)
|
/external/python/cpython3/Lib/lib2to3/pgen2/ |
D | token.py | 9 ENDMARKER = 0 variable 85 return x == ENDMARKER
|
/external/python/cpython3/Include/ |
D | token.h | 12 #define ENDMARKER 0 macro 80 #define ISEOF(x) ((x) == ENDMARKER)
|
/external/python/cpython2/Lib/ |
D | token.py | 11 ENDMARKER = 0 variable 82 return x == ENDMARKER
|
D | tokenize.py | 208 if tok_type == ENDMARKER: 452 yield (ENDMARKER, '', (lnum, 0), (lnum, 0), '')
|
/external/python/cpython3/Lib/ |
D | token.py | 13 ENDMARKER = 0 variable 90 return x == ENDMARKER
|
D | tokenize.py | 250 if tok_type == ENDMARKER: 667 yield TokenInfo(ENDMARKER, '', (lnum, 0), (lnum, 0), '')
|
/external/python/cpython2/Lib/test/ |
D | test_tokenize.py | 3 STRING, ENDMARKER, tok_name, Untokenizer, tokenize) 19 if type == ENDMARKER: 51 self.assertEqual(tokens[-1][0], ENDMARKER)
|
/external/python/cpython2/Lib/lib2to3/ |
D | Grammar.txt | 18 #diagram:token ENDMARKER 30 file_input: (NEWLINE | stmt)* ENDMARKER 32 eval_input: testlist NEWLINE* ENDMARKER
|
D | PatternGrammar.txt | 12 Matcher: Alternatives ENDMARKER
|
/external/python/cpython2/Parser/ |
D | grammar1.c | 38 if (lb->lb_type == ENDMARKER) in PyGrammar_LabelRepr()
|
D | parsetok.c | 164 if (type == ENDMARKER && started) { in parsetok()
|
/external/python/cpython3/Parser/ |
D | grammar1.c | 37 if (lb->lb_type == ENDMARKER) in PyGrammar_LabelRepr()
|
/external/python/cpython3/Lib/test/ |
D | test_tokenize.py | 3 STRING, ENDMARKER, ENCODING, tok_name, detect_encoding, 25 if type == ENDMARKER: 58 self.assertEqual(tokens[-1].type, ENDMARKER)
|
/external/python/cpython3/Lib/lib2to3/ |
D | PatternGrammar.txt | 12 Matcher: Alternatives ENDMARKER
|
D | Grammar.txt | 11 file_input: (NEWLINE | stmt)* ENDMARKER 13 eval_input: testlist NEWLINE* ENDMARKER
|
/external/python/cpython2/Grammar/ |
D | Grammar | 19 file_input: (NEWLINE | stmt)* ENDMARKER 20 eval_input: testlist NEWLINE* ENDMARKER
|
/external/python/cpython3/Grammar/ |
D | Grammar | 12 file_input: (NEWLINE | stmt)* ENDMARKER 13 eval_input: testlist NEWLINE* ENDMARKER
|
/external/python/cpython2/Doc/library/ |
D | token.rst | 46 .. data:: ENDMARKER
|
/external/yapf/yapf/yapflib/ |
D | pytree_utils.py | 144 if isinstance(tree, pytree.Leaf) and tree.type == token.ENDMARKER:
|
D | pytree_unwrapper.py | 60 grammar_token.ENDMARKER
|
/external/python/cpython3/Doc/library/ |
D | token.rst | 47 .. data:: ENDMARKER
|
D | tokenize.rst | 243 5,0-5,0: ENDMARKER '' 269 5,0-5,0: ENDMARKER ''
|
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor/ |
D | snippet.py | 236 if tok.type == token.ENDMARKER:
|