HomeSort by relevance Sort by last modified time
    Searched defs:tb_next (Results 1 - 6 of 6) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
traceback.h 14 struct _traceback *tb_next; member in struct:_traceback
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
traceback.h 14 struct _traceback *tb_next; member in struct:_traceback
  /external/python/cpython2/Include/
traceback.h 14 struct _traceback *tb_next; member in struct:_traceback
  /external/python/cpython3/Include/
traceback.h 16 struct _traceback *tb_next; member in struct:_traceback
  /external/python/cpython3/Python/clinic/
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};
21 PyObject *tb_next; local
27 &tb_next, &PyFrame_Type, &tb_frame, &tb_lasti, &tb_lineno)) {
30 return_value = tb_new_impl(type, tb_next, tb_frame, tb_lasti, tb_lineno);
  /external/libchrome/third_party/jinja2/
debug.py 44 def tb_next(self): member in class: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...]

Completed in 105 milliseconds