/third_party/node/deps/v8/third_party/jinja2/ |
H A D | debug.py | 43 tb = tb.tb_next 53 tb = tb.tb_next 65 tb = tb.tb_next 67 tb_next = None 69 # Assign tb_next in reverse to avoid circular references. 71 tb_next = tb_set_next(tb, tb_next) 73 return exc_type, exc_value, tb_next 164 return sys.exc_info()[2].tb_next 212 # tb_next i [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | debug.py | 43 tb = tb.tb_next 53 tb = tb.tb_next 65 tb = tb.tb_next 67 tb_next = None 69 # Assign tb_next in reverse to avoid circular references. 71 tb_next = tb_set_next(tb, tb_next) 73 return exc_type, exc_value, tb_next 164 return sys.exc_info()[2].tb_next 212 # tb_next i [all...] |
/third_party/jinja2/ |
H A D | debug.py | 42 tb = tb.tb_next 52 tb = tb.tb_next 64 tb = tb.tb_next 66 tb_next = None 68 # Assign tb_next in reverse to avoid circular references. 70 tb.tb_next = tb_next 71 tb_next = tb 73 return exc_value.with_traceback(tb_next) 147 return sys.exc_info()[2].tb_next # typ [all...] |
/third_party/python/Lib/test/ |
H A D | test_raise.py | 226 self.assertEqual(e.__traceback__.tb_next, tb) 242 self.assertIsInstance(tb.tb_next, types.TracebackType) 247 self.assertIs(tb.tb_next.tb_next, None) 251 del tb.tb_next 254 tb.tb_next = "asdf" 258 tb.tb_next = tb 261 tb.tb_next.tb_next = tb 264 tb.tb_next [all...] |
H A D | test_frame.py | 36 tb = tb.tb_next 169 tb = tb.tb_next 227 tb = tb.tb_next
|
H A D | test_traceback.py | 28 test_tb = namedtuple('tb', ['tb_frame', 'tb_lineno', 'tb_next', 'tb_lasti']) 898 cleanup_func(tb.tb_next) 1972 tb_next = None 1976 tb = types.TracebackType(tb_next, frame, lasti, lineno) 2163 inner_frame = tb.tb_next.tb_next.tb_next.tb_frame
|
H A D | test_exception_group.py | 254 self.assertIsNone(eg.__traceback__.tb_next) 257 self.assertIsNone(tb.tb_next) 533 self.assertIsNone(tb.tb_next)
|
H A D | test_dis.py | 25 while tb.tb_next: 26 tb = tb.tb_next 1710 while tb.tb_next: tb = tb.tb_next
|
H A D | test_sys_settrace.py | 1595 tb = tb.tb_next 1620 tb = tb.tb_next
|
/third_party/python/Python/ |
H A D | traceback.c | 56 tb->tb_next = next; in tb_create_raw() 70 tb_next: object 79 tb_new_impl(PyTypeObject *type, PyObject *tb_next, PyFrameObject *tb_frame, in tb_new_impl() argument 83 if (tb_next == Py_None) { in tb_new_impl() 84 tb_next = NULL; in tb_new_impl() 85 } else if (!PyTraceBack_Check(tb_next)) { in tb_new_impl() 88 Py_TYPE(tb_next)->tp_name); in tb_new_impl() 91 return tb_create_raw((PyTracebackObject *)tb_next, tb_frame, tb_lasti, in tb_new_impl() 98 return Py_BuildValue("[ssss]", "tb_frame", "tb_next", in tb_dir() 105 PyObject* ret = (PyObject*)self->tb_next; in tb_next_get() 238 _PyTraceBack_FromFrame(PyObject *tb_next, PyFrameObject *frame) _PyTraceBack_FromFrame() argument [all...] |
H A D | suggestions.c | 214 PyTracebackObject *next = traceback->tb_next; in offer_suggestions_for_name_error()
|
H A D | import.c | 1505 PyObject *next = (PyObject *) traceback->tb_next; in remove_importlib_frames() 1527 prev_link = (PyObject **) &traceback->tb_next; in remove_importlib_frames()
|
/third_party/python/Python/clinic/ |
H A D | traceback.c.h | 6 "TracebackType(tb_next, tb_frame, tb_lasti, tb_lineno)\n" 12 tb_new_impl(PyTypeObject *type, PyObject *tb_next, PyFrameObject *tb_frame, 19 static const char * const _keywords[] = {"tb_next", "tb_frame", "tb_lasti", "tb_lineno", NULL}; in tb_new() 24 PyObject *tb_next; in tb_new() local 33 tb_next = fastargs[0]; in tb_new() 47 return_value = tb_new_impl(type, tb_next, tb_frame, tb_lasti, tb_lineno); in tb_new()
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | debug.py | 44 def tb_next(self): member in TracebackFrameProxy 164 tb = tb.tb_next 172 tb = tb.tb_next 177 next = tb.tb_next 292 new_tb = exc_info[2].tb_next 300 traceback objects. The function returned allows resetting `tb_next` on 339 ('tb_next', ctypes.POINTER(_Traceback)), 346 """Set the tb_next attribute of a traceback object.""" 351 if tb.tb_next is not None: 352 old = _Traceback.from_address(id(tb.tb_next)) [all...] |
/third_party/python/Lib/unittest/ |
H A D | result.py | 204 tb = tb.tb_next 237 tb = tb.tb_next 239 prev.tb_next = None
|
/third_party/python/Include/cpython/ |
H A D | traceback.h | 9 PyTracebackObject *tb_next; member
|
/third_party/python/Include/internal/ |
H A D | pycore_traceback.h | 84 PyObject *tb_next,
|
/third_party/python/Lib/idlelib/ |
H A D | stackviewer.py | 33 tb = tb.tb_next 36 tb = tb.tb_next
|
H A D | run.py | 631 tb = tb.tb_next
|
/third_party/python/Lib/ |
H A D | dis.py | 120 while tb.tb_next: tb = tb.tb_next 731 while tb.tb_next: 732 tb = tb.tb_next
|
H A D | code.py | 142 lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next)
|
H A D | traceback.py | 244 tb = tb.tb_next 341 This will follow tb.tb_next (and thus is in the opposite order to 346 tb = tb.tb_next 360 tb = tb.tb_next
|
H A D | bdb.py | 536 t = t.tb_next 546 t = t.tb_next
|
H A D | asyncore.py | 549 tb = tb.tb_next
|
/third_party/python/Lib/asyncio/ |
H A D | base_tasks.py | 63 tb = tb.tb_next
|