/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_tokenize.py | 533 STRING, ENDMARKER, tok_name) 544 if type == ENDMARKER:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/ |
D | token.py | 9 ENDMARKER = 0 variable 82 return x == ENDMARKER
|
D | tokenize.py | 495 yield (ENDMARKER, '', (lnum, 0), (lnum, 0), '')
|
D | pgen.py | 149 while self.type != token.ENDMARKER:
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | token.h | 12 #define ENDMARKER 0 macro 74 #define ISEOF(x) ((x) == ENDMARKER)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | token.h | 12 #define ENDMARKER 0 macro 74 #define ISEOF(x) ((x) == ENDMARKER)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | token.py | 11 ENDMARKER = 0 variable 82 return x == ENDMARKER
|
D | tokenize.py | 206 if tok_type == ENDMARKER: 425 yield (ENDMARKER, '', (lnum, 0), (lnum, 0), '')
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | token.py | 13 ENDMARKER = 0 variable 84 return x == ENDMARKER
|
D | tokenize.py | 417 yield (ENDMARKER, '', (lnum, 0), (lnum, 0), '')
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | grammar1.c | 38 if (lb->lb_type == ENDMARKER) in PyGrammar_LabelRepr()
|
D | parsetok.c | 175 if (type == ENDMARKER && started) { in parsetok()
|
D | pgen.c | 116 addlabel(&gr->gr_ll, ENDMARKER, "EMPTY"); in newnfagrammar()
|
D | tokenizer.c | 1338 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN; in tok_get()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/ |
D | grammar1.c | 38 if (lb->lb_type == ENDMARKER) in PyGrammar_LabelRepr()
|
D | parsetok.c | 164 if (type == ENDMARKER && started) { in parsetok()
|
D | tokenizer.c | 1358 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN; in tok_get()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
D | PatternGrammar.txt | 12 Matcher: Alternatives ENDMARKER
|
D | Grammar.txt | 18 #diagram:token ENDMARKER 30 file_input: (NEWLINE | stmt)* ENDMARKER 32 eval_input: testlist NEWLINE* ENDMARKER
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/ |
D | Grammar | 19 file_input: (NEWLINE | stmt)* ENDMARKER 20 eval_input: testlist NEWLINE* ENDMARKER
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | parsermodule.c | 3062 && validate_ntype(CHILD(tree, nch - 1), ENDMARKER)); in validate_eval_input() 3289 && validate_ntype(CHILD(tree, nch), ENDMARKER)); in validate_file_input()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | parsermodule.c | 3091 && validate_ntype(CHILD(tree, nch - 1), ENDMARKER)); in validate_eval_input() 3318 && validate_ntype(CHILD(tree, nch), ENDMARKER)); in validate_file_input()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | transformer.py | 187 if node[0] != token.ENDMARKER and node[0] != token.NEWLINE:
|