/external/tensorflow/tensorflow/python/util/ |
D | tf_stack_test.py | 31 stacks = tf_stack.extract_stack(), traceback.extract_stack() 36 frames1 = tf_stack.extract_stack() 37 frames2 = tf_stack.extract_stack() 45 frame1, frame2 = tf_stack.extract_stack(), tf_stack.extract_stack() 55 trace = tf_stack.extract_stack() # COMMENT 60 def extract_stack(limit=None): function 62 return tf_stack.extract_stack(limit), traceback.extract_stack(limit)
|
D | tf_stack.py | 160 def extract_stack(): function 173 return _tf_stack.extract_stack(
|
/external/python/pyopenssl/tests/ |
D | memdbg.py | 57 python_stack = traceback.extract_stack(limit=3) 69 python_stack = traceback.extract_stack(limit=3)
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | source_remote_test.py | 93 send_stack = traceback.extract_stack() 133 send_traceback = traceback.extract_stack() 174 send_traceback = traceback.extract_stack()
|
D | dumping_callback.py | 264 stack_frames = tf_stack.extract_stack()
|
/external/python/cpython2/Lib/ |
D | traceback.py | 270 print_list(extract_stack(f, limit), file) 279 return format_list(extract_stack(f, limit)) 281 def extract_stack(f=None, limit = None): function
|
/external/python/cpython2/Doc/library/ |
D | traceback.rst | 85 .. function:: extract_stack([f[, limit]]) 95 :func:`extract_stack`, return a list of strings ready for printing. Each 130 A shorthand for ``format_list(extract_stack(f, limit))``. 251 ... print repr(traceback.extract_stack()) 263 ('<doctest>', 7, 'lumberstack', 'print repr(traceback.extract_stack())')]
|
/external/tensorflow/tensorflow/python/framework/ |
D | registry.py | 69 stack = traceback.extract_stack(limit=3)
|
/external/scapy/scapy/ |
D | error.py | 27 stk = traceback.extract_stack()
|
D | base_classes.py | 252 for tb in traceback.extract_stack()+[("??",-1,None,"")]:
|
/external/python/cpython3/Lib/ |
D | traceback.py | 190 print_list(extract_stack(f, limit=limit), file=file) 197 return format_list(extract_stack(f, limit=limit)) 200 def extract_stack(f=None, limit=None): function
|
/external/python/cpython3/Lib/asyncio/ |
D | format_helpers.py | 62 def extract_stack(f=None, limit=None): function
|
D | coroutines.py | 43 self._source_traceback = format_helpers.extract_stack(sys._getframe(1))
|
D | futures.py | 84 self._source_traceback = format_helpers.extract_stack(
|
D | events.py | 41 self._source_traceback = format_helpers.extract_stack(
|
D | streams.py | 413 self._source_traceback = format_helpers.extract_stack(
|
/external/tensorflow/tensorflow/python/debug/wrappers/ |
D | grpc_wrapper.py | 62 debug_server_urls, run_key, traceback.extract_stack(), graph,
|
/external/python/cpython3/Doc/library/ |
D | traceback.rst | 107 .. function:: extract_stack(f=None, limit=None) 117 :func:`extract_tb` or :func:`extract_stack`, return a list of strings ready 160 A shorthand for ``format_list(extract_stack(f, limit))``. 456 ... print(repr(traceback.extract_stack())) 468 ('<doctest>', 7, 'lumberstack', 'print(repr(traceback.extract_stack()))')]
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | reraiser_thread.py | 35 for filename, lineno, name, line in traceback.extract_stack(stack):
|
/external/python/cpython2/Lib/test/ |
D | test_zipimport.py | 25 from traceback import extract_tb, extract_stack, print_tb 371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
|
D | test_traceback.py | 245 return traceback.extract_stack()
|
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/ |
D | test_support.py | 158 stack = traceback.extract_stack()
|
/external/python/cpython3/Lib/test/ |
D | test_zipimport.py | 20 from traceback import extract_tb, extract_stack, print_tb 634 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
|
D | test_traceback.py | 769 return traceback.extract_stack(frame, **kwargs) 882 return traceback.extract_stack()
|
/external/python/setuptools/setuptools/_vendor/ |
D | pyparsing.py | 1024 def extract_stack(limit=0): function 1027 frame_summary = traceback.extract_stack(limit=-offset+limit-1)[offset] 1034 extract_stack = traceback.extract_stack 1043 this_line = extract_stack(limit=2)[-1]
|