Home
last modified time | relevance | path

Searched refs:excepthandler_ty (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Python/
Dast_opt.c426 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()
Dsymtable.c190 static int symtable_visit_excepthandler(struct symtable *st, excepthandler_ty);
1600 symtable_visit_excepthandler(struct symtable *st, excepthandler_ty eh) in symtable_visit_excepthandler()
DPython-ast.c1182 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()
Dcompile.c1453 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET( in find_ann()
2651 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET( in compiler_try_except()
Dast.c474 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/
DPython-ast.h29 typedef struct _excepthandler *excepthandler_ty; typedef
523 excepthandler_ty _Py_ExceptHandler(expr_ty type, expr_ty name, asdl_seq * body,
/external/python/cpython3/Include/
DPython-ast.h29 typedef struct _excepthandler *excepthandler_ty; typedef
617 excepthandler_ty _Py_ExceptHandler(expr_ty type, identifier name, asdl_seq *
/external/python/cpython2/Python/
Dsymtable.c177 static int symtable_visit_excepthandler(struct symtable *st, excepthandler_ty);
1392 symtable_visit_excepthandler(struct symtable *st, excepthandler_ty eh) in symtable_visit_excepthandler()
DPython-ast.c981 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()
Dast.c3009 static excepthandler_ty
3116 excepthandler_ty e = ast_for_except_clause(c, CHILD(n, 3 + i * 3), in ast_for_try_stmt()
Dcompile.c1846 excepthandler_ty handler = (excepthandler_ty)asdl_seq_GET( in compiler_try_except()