/external/python/cpython3/Include/ |
D | token.h | 13 #define ENDMARKER 0 macro 80 #define ISEOF(x) ((x) == ENDMARKER) 81 #define ISWHITESPACE(x) ((x) == ENDMARKER || \
|
/external/python/cpython2/Include/ |
D | token.h | 12 #define ENDMARKER 0 macro 74 #define ISEOF(x) ((x) == ENDMARKER)
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
D | token.py | 9 ENDMARKER = 0 variable 83 return x == ENDMARKER
|
/external/python/cpython3/Lib/lib2to3/pgen2/ |
D | token.py | 9 ENDMARKER = 0 variable 86 return x == ENDMARKER
|
/external/python/cpython3/Tools/peg_generator/pegen/ |
D | metagrammar.gram | 32 start[Grammar]: grammar ENDMARKER { grammar } 76 | items '$' action { Alt(items + [NamedItem(None, NameLeaf('ENDMARKER'))], action=action) } 77 | items '$' { Alt(items + [NamedItem(None, NameLeaf('ENDMARKER'))], action=None) }
|
D | __main__.py | 164 if diag.type == token.ENDMARKER:
|
/external/python/cpython3/Lib/ |
D | token.py | 6 ENDMARKER = 0 variable 136 return 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/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/cpython3/Parser/pgen/ |
D | metaparser.py | 18 tokenize.ENDMARKER: "ENDMARKER", 32 while self.type != tokenize.ENDMARKER:
|
/external/python/cpython3/Parser/ |
D | grammar1.c | 24 if (lb->lb_type == ENDMARKER) in PyGrammar_LabelRepr()
|
D | parsetok.c | 317 if (type == ENDMARKER && started) { in parsetok() 361 REQ(ch, ENDMARKER); in parsetok()
|
/external/python/cpython2/Parser/ |
D | grammar1.c | 38 if (lb->lb_type == ENDMARKER) in PyGrammar_LabelRepr()
|
/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/cpython3/Grammar/ |
D | Tokens | 1 ENDMARKER
|
D | Grammar | 14 file_input: (NEWLINE | stmt)* ENDMARKER 15 eval_input: testlist NEWLINE* ENDMARKER 202 func_type_input: func_type NEWLINE* 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/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/cpython2/Grammar/ |
D | Grammar | 19 file_input: (NEWLINE | stmt)* ENDMARKER 20 eval_input: testlist NEWLINE* ENDMARKER
|
/external/python/cpython2/Doc/library/ |
D | token.rst | 46 .. data:: ENDMARKER
|
/external/python/cpython3/Doc/library/ |
D | token-list.inc | 2 .. data:: ENDMARKER
|
/external/yapf/yapf/yapflib/ |
D | pytree_utils.py | 144 if isinstance(tree, pytree.Leaf) and tree.type == token.ENDMARKER:
|