Home
last modified time | relevance | path

Searched refs:ast2obj_list (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
DPython-ast.c701 static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*)) in ast2obj_list() function
2581 value = ast2obj_list(o->v.Module.body, ast2obj_stmt); in ast2obj_mod()
2590 value = ast2obj_list(o->v.Interactive.body, ast2obj_stmt); in ast2obj_mod()
2608 value = ast2obj_list(o->v.Suite.body, ast2obj_stmt); in ast2obj_mod()
2645 value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2650 value = ast2obj_list(o->v.FunctionDef.decorator_list, ast2obj_expr); in ast2obj_stmt()
2674 value = ast2obj_list(o->v.AsyncFunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2679 value = ast2obj_list(o->v.AsyncFunctionDef.decorator_list, in ast2obj_stmt()
2699 value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); in ast2obj_stmt()
2704 value = ast2obj_list(o->v.ClassDef.keywords, ast2obj_keyword); in ast2obj_stmt()
[all …]
/external/python/cpython2/Python/
DPython-ast.c547 static PyObject* ast2obj_list(asdl_seq *seq, PyObject* (*func)(void*)) in ast2obj_list() function
2147 value = ast2obj_list(o->v.Module.body, ast2obj_stmt); in ast2obj_mod()
2156 value = ast2obj_list(o->v.Interactive.body, ast2obj_stmt); in ast2obj_mod()
2174 value = ast2obj_list(o->v.Suite.body, ast2obj_stmt); in ast2obj_mod()
2212 value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2217 value = ast2obj_list(o->v.FunctionDef.decorator_list, in ast2obj_stmt()
2233 value = ast2obj_list(o->v.ClassDef.bases, ast2obj_expr); in ast2obj_stmt()
2238 value = ast2obj_list(o->v.ClassDef.body, ast2obj_stmt); in ast2obj_stmt()
2243 value = ast2obj_list(o->v.ClassDef.decorator_list, in ast2obj_stmt()
2263 value = ast2obj_list(o->v.Delete.targets, ast2obj_expr); in ast2obj_stmt()
[all …]