Lines Matching refs:FunctionDef
1964 p->v.FunctionDef.name = name; in _PyAST_FunctionDef()
1965 p->v.FunctionDef.args = args; in _PyAST_FunctionDef()
1966 p->v.FunctionDef.body = body; in _PyAST_FunctionDef()
1967 p->v.FunctionDef.decorator_list = decorator_list; in _PyAST_FunctionDef()
1968 p->v.FunctionDef.returns = returns; in _PyAST_FunctionDef()
1969 p->v.FunctionDef.type_comment = type_comment; in _PyAST_FunctionDef()
3654 value = ast2obj_identifier(state, o->v.FunctionDef.name); in ast2obj_stmt()
3659 value = ast2obj_arguments(state, o->v.FunctionDef.args); in ast2obj_stmt()
3664 value = ast2obj_list(state, (asdl_seq*)o->v.FunctionDef.body, in ast2obj_stmt()
3670 value = ast2obj_list(state, (asdl_seq*)o->v.FunctionDef.decorator_list, in ast2obj_stmt()
3676 value = ast2obj_expr(state, o->v.FunctionDef.returns); in ast2obj_stmt()
3681 value = ast2obj_string(state, o->v.FunctionDef.type_comment); in ast2obj_stmt()