/external/python/cpython2/Python/ |
D | traceback.c | 16 {"tb_frame", T_OBJECT, OFF(tb_frame), READONLY}, 28 Py_XDECREF(tb->tb_frame); in tb_dealloc() 37 Py_VISIT(tb->tb_frame); in tb_traverse() 45 Py_CLEAR(tb->tb_frame); in tb_clear() 97 tb->tb_frame = frame; in newtracebackobject() 245 tb->tb_frame->f_code->co_filename), in tb_printinternal() 247 PyString_AsString(tb->tb_frame->f_code->co_name)); in tb_printinternal()
|
/external/libmojo/third_party/jinja2/ |
D | debug.py | 60 return '__jinja_template__' in self.tb.tb_frame.f_globals 171 if tb.tb_frame.f_code in internal_code: 180 template = tb.tb_frame.f_globals.get('__jinja_template__') 204 real_locals = tb.tb_frame.f_locals.copy() 241 function = tb.tb_frame.f_code.co_name
|
D | _compat.py | 135 frame_type = type(_tb.tb_frame)
|
/external/python/cpython2/Lib/ |
D | traceback.py | 61 f = tb.tb_frame 95 f = tb.tb_frame 269 f = sys.exc_info()[2].tb_frame.f_back 278 f = sys.exc_info()[2].tb_frame.f_back 294 f = sys.exc_info()[2].tb_frame.f_back
|
D | types.py | 71 FrameType = type(tb.tb_frame)
|
D | inspect.py | 413 object = object.tb_frame 570 object = object.tb_frame 1002 frame = frame.tb_frame 1048 framelist.append((tb.tb_frame,) + getframeinfo(tb, context))
|
D | asyncore.py | 563 tb.tb_frame.f_code.co_filename, 564 tb.tb_frame.f_code.co_name,
|
D | dis.py | 59 disassemble(tb.tb_frame.f_code, tb.tb_lasti)
|
D | bdb.py | 343 if t and t.tb_frame is f: 353 stack.append((t.tb_frame, t.tb_lineno))
|
D | threading.py | 829 (exc_tb.tb_frame.f_code.co_filename, 831 exc_tb.tb_frame.f_code.co_name))
|
D | doctest.py | 1081 if inspect.istraceback(obj): obj = obj.tb_frame
|
/external/python/cpython2/Include/ |
D | traceback.h | 15 struct _frame *tb_frame; member
|
/external/python/cpython2/Lib/idlelib/ |
D | StackViewer.py | 31 if tb and tb.tb_frame is None: 34 stack.append((tb.tb_frame, tb.tb_lineno))
|
D | run.py | 368 while tb and tb.tb_frame.f_globals["__name__"] in ["rpc", "run"]:
|
/external/python/cpython2/Lib/test/ |
D | test_exceptions.py | 170 co = tb.tb_frame.f_code 182 co = tb.tb_frame.f_code 185 co2 = tb.tb_frame.f_back.f_code
|
D | test_zipimport.py | 371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
|
D | test_inspect.py | 96 self.assertFalse(inspect.isgetsetdescriptor(type(tb.tb_frame).f_locals))
|
/external/python/cpython2/Lib/unittest/ |
D | result.py | 181 return '__unittest' in tb.tb_frame.f_globals
|
/external/python/cpython2/Lib/unittest/test/ |
D | test_result.py | 264 class tb_frame(object): class in Test_TestResult.testStackFrameTrimming.Frame 269 Frame.tb_frame.f_globals['__unittest'] = True
|
/external/python/cpython2/Doc/library/ |
D | types.rst | 210 The type of frame objects such as found in ``tb.tb_frame`` if ``tb`` is a
|
D | inspect.rst | 117 | traceback | tb_frame | frame object at this | |
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | lex.py | 522 f = t.tb_frame
|
D | yacc.py | 1995 f = t.tb_frame
|
/external/python/cpython2/Lib/logging/ |
D | __init__.py | 68 return sys.exc_info()[2].tb_frame.f_back
|
/external/libmojo/third_party/ply/ |
D | lex.py | 432 f = t.tb_frame
|