Home
last modified time | relevance | path

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

/external/python/cpython2/Grammar/
DGrammar27 varargslist: ((fpdef ['=' test] ',')*
29 fpdef ['=' test] (',' fpdef ['=' test])* [','])
30 fpdef: NAME | '(' fplist ')'
31 fplist: fpdef (',' fpdef)* [',']
/external/python/cpython2/Include/
Dgraminit.h12 #define fpdef 265 macro
/external/python/cpython2/Lib/
Dsymbol.py22 fpdef = 265 variable
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g111 : fpdef (ASSIGN test)?
114 fpdef
120 : fpdef (options {greedy=true;}:COMMA fpdef)* (COMMA)?
/external/python/cpython2/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()
/external/python/cpython2/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()
/external/python/cpython2/Lib/compiler/
Dtransformer.py336 def fpdef(self, nodelist): member in Transformer