Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
DPython-ast.c728 #define ast2obj_identifier ast2obj_object macro
2635 value = ast2obj_identifier(o->v.FunctionDef.name); in ast2obj_stmt()
2664 value = ast2obj_identifier(o->v.AsyncFunctionDef.name); in ast2obj_stmt()
2694 value = ast2obj_identifier(o->v.ClassDef.name); in ast2obj_stmt()
2973 value = ast2obj_identifier(o->v.ImportFrom.module); in ast2obj_stmt()
2992 value = ast2obj_list(o->v.Global.names, ast2obj_identifier); in ast2obj_stmt()
3001 value = ast2obj_list(o->v.Nonlocal.names, ast2obj_identifier); in ast2obj_stmt()
3377 value = ast2obj_identifier(o->v.Attribute.attr); in ast2obj_expr()
3424 value = ast2obj_identifier(o->v.Name.id); in ast2obj_expr()
3742 value = ast2obj_identifier(o->v.ExceptHandler.name); in ast2obj_excepthandler()
[all …]
/external/python/cpython2/Python/
DPython-ast.c572 #define ast2obj_identifier ast2obj_object macro
2202 value = ast2obj_identifier(o->v.FunctionDef.name); in ast2obj_stmt()
2228 value = ast2obj_identifier(o->v.ClassDef.name); in ast2obj_stmt()
2482 value = ast2obj_identifier(o->v.ImportFrom.module); in ast2obj_stmt()
2520 value = ast2obj_list(o->v.Global.names, ast2obj_identifier); in ast2obj_stmt()
2842 value = ast2obj_identifier(o->v.Attribute.attr); in ast2obj_expr()
2875 value = ast2obj_identifier(o->v.Name.id); in ast2obj_expr()
3238 value = ast2obj_identifier(o->vararg); in ast2obj_arguments()
3243 value = ast2obj_identifier(o->kwarg); in ast2obj_arguments()
3272 value = ast2obj_identifier(o->arg); in ast2obj_keyword()
[all …]