Searched refs:TryExcept (Results 1 - 14 of 14) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
H A DExceptions.py55 class TryExcept(Test): class in inherits:Test
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A DPython-ast.h146 } TryExcept; member in union:_stmt::__anon2603
420 #define TryExcept(a0, a1, a2, a3, a4, a5) _Py_TryExcept(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A DPython-ast.h146 } TryExcept; member in union:_stmt::__anon2910
420 #define TryExcept(a0, a1, a2, a3, a4, a5) _Py_TryExcept(a0, a1, a2, a3, a4, a5) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dsymtable.c1097 VISIT_SEQ(st, stmt, s->v.TryExcept.body);
1098 VISIT_SEQ(st, stmt, s->v.TryExcept.orelse);
1099 VISIT_SEQ(st, excepthandler, s->v.TryExcept.handlers);
H A DPython-ast.c715 TryExcept_type = make_type("TryExcept", stmt_type, TryExcept_fields, 3);
1301 TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int lineno, function
1309 p->v.TryExcept.body = body;
1310 p->v.TryExcept.handlers = handlers;
1311 p->v.TryExcept.orelse = orelse;
2425 value = ast2obj_list(o->v.TryExcept.body, ast2obj_stmt);
2430 value = ast2obj_list(o->v.TryExcept.handlers,
2436 value = ast2obj_list(o->v.TryExcept.orelse, ast2obj_stmt);
4278 PyErr_Format(PyExc_TypeError, "TryExcept field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
4293 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from TryExcept");
[all...]
H A Dcompile.c1872 VISIT_SEQ(c, stmt, s->v.TryExcept.body);
1876 n = asdl_seq_LEN(s->v.TryExcept.handlers);
1880 s->v.TryExcept.handlers, i);
1908 VISIT_SEQ(c, stmt, s->v.TryExcept.orelse);
H A Dast.c3121 except_st = TryExcept(body, handlers, orelse, LINENO(n),
3126 /* if a 'finally' is present too, we nest the TryExcept within a
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dsymtable.c1095 VISIT_SEQ(st, stmt, s->v.TryExcept.body);
1096 VISIT_SEQ(st, stmt, s->v.TryExcept.orelse);
1097 VISIT_SEQ(st, excepthandler, s->v.TryExcept.handlers);
H A DPython-ast.c698 TryExcept_type = make_type("TryExcept", stmt_type, TryExcept_fields, 3);
1284 TryExcept(asdl_seq * body, asdl_seq * handlers, asdl_seq * orelse, int lineno, function
1292 p->v.TryExcept.body = body;
1293 p->v.TryExcept.handlers = handlers;
1294 p->v.TryExcept.orelse = orelse;
2408 value = ast2obj_list(o->v.TryExcept.body, ast2obj_stmt);
2413 value = ast2obj_list(o->v.TryExcept.handlers,
2419 value = ast2obj_list(o->v.TryExcept.orelse, ast2obj_stmt);
4261 PyErr_Format(PyExc_TypeError, "TryExcept field \"body\" must be a list, not a %.200s", tmp->ob_type->tp_name);
4276 PyErr_SetString(PyExc_TypeError, "required field \"body\" missing from TryExcept");
[all...]
H A Dcompile.c1850 VISIT_SEQ(c, stmt, s->v.TryExcept.body);
1854 n = asdl_seq_LEN(s->v.TryExcept.handlers);
1858 s->v.TryExcept.handlers, i);
1886 VISIT_SEQ(c, stmt, s->v.TryExcept.orelse);
H A Dast.c3104 except_st = TryExcept(body, handlers, orelse, LINENO(n),
3109 /* if a 'finally' is present too, we nest the TryExcept within a
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
H A Dunparse.py199 if len(t.body) == 1 and isinstance(t.body[0], ast.TryExcept):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
H A Dast.py1269 class TryExcept(Node): class in inherits:Node
1292 return "TryExcept(%s, %s, %s)" % (repr(self.body), repr(self.handlers), repr(self.else_))
H A Dtransformer.py962 try_except = TryExcept(self.com_node(nodelist[2]), clauses, elseNode,

Completed in 167 milliseconds