Home
last modified time | relevance | path

Searched refs:tback (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Parser/
DPython.asdl31 | Raise(expr? type, expr? inst, expr? tback)
/external/python/cpython2/Demo/parser/
Dunparse.py180 if t.tback:
182 self.dispatch(t.tback)
/external/python/cpython2/Include/
DPython-ast.h139 expr_ty tback; member
418 stmt_ty _Py_Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int
/external/python/cpython2/Python/
Dast.c82 PyObject *type, *value, *tback, *errstr, *loc, *tmp; in ast_error_finish() local
89 PyErr_Fetch(&type, &value, &tback); in ast_error_finish()
117 PyErr_Restore(type, value, tback); in ast_error_finish()
1381 PyObject *type, *value, *tback, *errstr; in ast_for_atom() local
1382 PyErr_Fetch(&type, &value, &tback); in ast_for_atom()
1396 Py_XDECREF(tback); in ast_for_atom()
Dsymtable.c1097 if (s->v.Raise.tback) in symtable_visit_stmt()
1098 VISIT(st, expr, s->v.Raise.tback); in symtable_visit_stmt()
DPython-ast.c1284 Raise(expr_ty type, expr_ty inst, expr_ty tback, int lineno, int col_offset, in Raise() argument
1294 p->v.Raise.tback = tback; in Raise()
2416 value = ast2obj_expr(o->v.Raise.tback); in ast2obj_stmt()
4295 expr_ty tback; in obj2ast_stmt() local
4323 res = obj2ast_expr(tmp, &tback, arena); in obj2ast_stmt()
4328 tback = NULL; in obj2ast_stmt()
4330 *out = Raise(type, inst, tback, lineno, col_offset, arena); in obj2ast_stmt()
Dcompile.c2129 if (s->v.Raise.tback) { in compiler_visit_stmt()
2130 VISIT(c, expr, s->v.Raise.tback); in compiler_visit_stmt()
/external/python/cpython3/Python/
Dast.c2117 PyObject *type, *value, *tback, *errstr; in ast_for_atom() local
2118 PyErr_Fetch(&type, &value, &tback); in ast_for_atom()
2132 Py_XDECREF(tback); in ast_for_atom()
/external/deqp/external/vulkancts/framework/vulkan/
DvkStrUtilImpl.inl3279 s << "\tback = " << value.back << '\n';