Lines Matching refs:FunctionDef
1979 p->v.FunctionDef.name = name; in _PyAST_FunctionDef()
1980 p->v.FunctionDef.args = args; in _PyAST_FunctionDef()
1981 p->v.FunctionDef.body = body; in _PyAST_FunctionDef()
1982 p->v.FunctionDef.decorator_list = decorator_list; in _PyAST_FunctionDef()
1983 p->v.FunctionDef.returns = returns; in _PyAST_FunctionDef()
1984 p->v.FunctionDef.type_comment = type_comment; in _PyAST_FunctionDef()
3702 value = ast2obj_identifier(state, o->v.FunctionDef.name); in ast2obj_stmt()
3707 value = ast2obj_arguments(state, o->v.FunctionDef.args); in ast2obj_stmt()
3712 value = ast2obj_list(state, (asdl_seq*)o->v.FunctionDef.body, in ast2obj_stmt()
3718 value = ast2obj_list(state, (asdl_seq*)o->v.FunctionDef.decorator_list, in ast2obj_stmt()
3724 value = ast2obj_expr(state, o->v.FunctionDef.returns); in ast2obj_stmt()
3729 value = ast2obj_string(state, o->v.FunctionDef.type_comment); in ast2obj_stmt()