Home
last modified time | relevance | path

Searched refs:ENDMARKER (Results 1 – 23 of 23) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_tokenize.py533 STRING, ENDMARKER, tok_name)
544 if type == ENDMARKER:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
Dtoken.py9 ENDMARKER = 0 variable
82 return x == ENDMARKER
Dtokenize.py495 yield (ENDMARKER, '', (lnum, 0), (lnum, 0), '')
Dpgen.py149 while self.type != token.ENDMARKER:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dtoken.h12 #define ENDMARKER 0 macro
74 #define ISEOF(x) ((x) == ENDMARKER)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dtoken.h12 #define ENDMARKER 0 macro
74 #define ISEOF(x) ((x) == ENDMARKER)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dtoken.py11 ENDMARKER = 0 variable
82 return x == ENDMARKER
Dtokenize.py206 if tok_type == ENDMARKER:
425 yield (ENDMARKER, '', (lnum, 0), (lnum, 0), '')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtoken.py13 ENDMARKER = 0 variable
84 return x == ENDMARKER
Dtokenize.py417 yield (ENDMARKER, '', (lnum, 0), (lnum, 0), '')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dgrammar1.c38 if (lb->lb_type == ENDMARKER) in PyGrammar_LabelRepr()
Dparsetok.c175 if (type == ENDMARKER && started) { in parsetok()
Dpgen.c116 addlabel(&gr->gr_ll, ENDMARKER, "EMPTY"); in newnfagrammar()
Dtokenizer.c1338 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN; in tok_get()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
Dgrammar1.c38 if (lb->lb_type == ENDMARKER) in PyGrammar_LabelRepr()
Dparsetok.c164 if (type == ENDMARKER && started) { in parsetok()
Dtokenizer.c1358 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN; in tok_get()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DPatternGrammar.txt12 Matcher: Alternatives ENDMARKER
DGrammar.txt18 #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/
DGrammar19 file_input: (NEWLINE | stmt)* ENDMARKER
20 eval_input: testlist NEWLINE* ENDMARKER
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c3062 && 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/
Dparsermodule.c3091 && 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/
Dtransformer.py187 if node[0] != token.ENDMARKER and node[0] != token.NEWLINE: