Searched refs:excepthandler_ty (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Python/ |
D | ast_opt.c | 426 static int astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, int optimize_); 757 CALL_SEQ(astfold_excepthandler, excepthandler_ty, node_->v.Try.handlers); in astfold_stmt() 775 astfold_excepthandler(excepthandler_ty node_, PyArena *ctx_, int optimize_) in astfold_excepthandler()
|
D | symtable.c | 190 static int symtable_visit_excepthandler(struct symtable *st, excepthandler_ty); 1600 symtable_visit_excepthandler(struct symtable *st, excepthandler_ty eh) in symtable_visit_excepthandler()
|
D | Python-ast.c | 1182 static int obj2ast_excepthandler(PyObject* obj, excepthandler_ty* out, PyArena* 2462 excepthandler_ty 2466 excepthandler_ty p; in ExceptHandler() 2467 p = (excepthandler_ty)PyArena_Malloc(arena, sizeof(*p)); in ExceptHandler() 3727 excepthandler_ty o = (excepthandler_ty)_o; in ast2obj_excepthandler() 5377 excepthandler_ty val; in obj2ast_stmt() 7681 obj2ast_excepthandler(PyObject* obj, excepthandler_ty* out, PyArena* arena) in obj2ast_excepthandler()
|
D | compile.c | 1453 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET( in find_ann() 2651 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET( in compiler_try_except()
|
D | ast.c | 474 excepthandler_ty handler = asdl_seq_GET(stmt->v.Try.handlers, i); in validate_stmt() 3730 static excepthandler_ty 3836 excepthandler_ty e = ast_for_except_clause(c, CHILD(n, 3 + i * 3), in ast_for_try_stmt()
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 29 typedef struct _excepthandler *excepthandler_ty; typedef 523 excepthandler_ty _Py_ExceptHandler(expr_ty type, expr_ty name, asdl_seq * body,
|
/external/python/cpython3/Include/ |
D | Python-ast.h | 29 typedef struct _excepthandler *excepthandler_ty; typedef 617 excepthandler_ty _Py_ExceptHandler(expr_ty type, identifier name, asdl_seq *
|
/external/python/cpython2/Python/ |
D | symtable.c | 177 static int symtable_visit_excepthandler(struct symtable *st, excepthandler_ty); 1392 symtable_visit_excepthandler(struct symtable *st, excepthandler_ty eh) in symtable_visit_excepthandler()
|
D | Python-ast.c | 981 static int obj2ast_excepthandler(PyObject* obj, excepthandler_ty* out, PyArena* 2061 excepthandler_ty 2065 excepthandler_ty p; in ExceptHandler() 2066 p = (excepthandler_ty)PyArena_Malloc(arena, sizeof(*p)); in ExceptHandler() 3176 excepthandler_ty o = (excepthandler_ty)_o; in ast2obj_excepthandler() 4386 excepthandler_ty val; in obj2ast_stmt() 6477 obj2ast_excepthandler(PyObject* obj, excepthandler_ty* out, PyArena* arena) in obj2ast_excepthandler()
|
D | ast.c | 3009 static excepthandler_ty 3116 excepthandler_ty e = ast_for_except_clause(c, CHILD(n, 3 + i * 3), in ast_for_try_stmt()
|
D | compile.c | 1846 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET( in compiler_try_except()
|