Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c35 static PyObject* ast2obj_stmt(void*);
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()
2623 ast2obj_stmt(void* _o) in ast2obj_stmt() function
2645 value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2674 value = ast2obj_list(o->v.AsyncFunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2709 value = ast2obj_list(o->v.ClassDef.body, ast2obj_stmt); in ast2obj_stmt()
2808 value = ast2obj_list(o->v.For.body, ast2obj_stmt); in ast2obj_stmt()
2813 value = ast2obj_list(o->v.For.orelse, ast2obj_stmt); in ast2obj_stmt()
[all …]
/external/python/cpython2/Python/
DPython-ast.c39 static PyObject* ast2obj_stmt(void*);
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()
2189 ast2obj_stmt(void* _o) in ast2obj_stmt() function
2212 value = ast2obj_list(o->v.FunctionDef.body, ast2obj_stmt); in ast2obj_stmt()
2238 value = ast2obj_list(o->v.ClassDef.body, ast2obj_stmt); in ast2obj_stmt()
2334 value = ast2obj_list(o->v.For.body, ast2obj_stmt); in ast2obj_stmt()
2339 value = ast2obj_list(o->v.For.orelse, ast2obj_stmt); in ast2obj_stmt()
2353 value = ast2obj_list(o->v.While.body, ast2obj_stmt); in ast2obj_stmt()
[all …]