Home
last modified time | relevance | path

Searched refs:fpdef (Results 1 – 9 of 9) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Grammar/
DGrammar27 varargslist: ((fpdef ['=' test] ',')*
29 fpdef ['=' test] (',' fpdef ['=' test])* [','])
30 fpdef: NAME | '(' fplist ')'
31 fplist: fpdef (',' fpdef)* [',']
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dgraminit.h12 #define fpdef 265 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgraminit.h12 #define fpdef 265 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dsymbol.py22 fpdef = 265 variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dast.c638 assert(TYPE(fpdef_node) == fpdef); in compiler_complex_args()
645 assert(TYPE(fpdef_node) == fpdef); in compiler_complex_args()
684 if (TYPE(ch) == fpdef) in ast_for_arguments()
705 case fpdef: { in ast_for_arguments()
749 assert(TYPE(ch) == fpdef); in ast_for_arguments()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dast.c638 assert(TYPE(fpdef_node) == fpdef); in compiler_complex_args()
645 assert(TYPE(fpdef_node) == fpdef); in compiler_complex_args()
684 if (TYPE(ch) == fpdef) in ast_for_arguments()
705 case fpdef: { in ast_for_arguments()
749 assert(TYPE(ch) == fpdef); in ast_for_arguments()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dparsermodule.c917 VALIDATER(fpdef); VALIDATER(fplist);
1250 else if (sym == fpdef) { in validate_varargslist()
1454 int res = validate_ntype(tree, fpdef); in validate_fpdef()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dparsermodule.c946 VALIDATER(fpdef); VALIDATER(fplist);
1279 else if (sym == fpdef) { in validate_varargslist()
1483 int res = validate_ntype(tree, fpdef); in validate_fpdef()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dtransformer.py336 def fpdef(self, nodelist): member in Transformer