Home
last modified time | relevance | path

Searched refs:extract_stack (Results 1 – 25 of 29) sorted by relevance

12

/external/tensorflow/tensorflow/python/debug/lib/
Dsource_remote_test.py91 send_stack = traceback.extract_stack()
130 send_traceback = traceback.extract_stack()
178 send_traceback = traceback.extract_stack()
207 send_traceback = traceback.extract_stack()
/external/python/cpython2/Lib/
Dtraceback.py270 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/
Dtraceback.rst85 .. 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/python/cpython3/Lib/
Dtraceback.py190 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/tensorflow/tensorflow/python/framework/
Dregistry.py66 stack = tf_stack.extract_stack()
Dtraceable_stack.py58 frame_records = tf_stack.extract_stack()
/external/tensorflow/tensorflow/python/util/
Dtf_stack.py31 def extract_stack(extract_frame_info_fn=None): function
Dtf_decorator.py86 frame = _traceback.extract_stack(limit=2)[0]
Ddeprecation.py102 stack = tf_stack.extract_stack()
/external/scapy/scapy/
Derror.py27 stk = traceback.extract_stack()
Dbase_classes.py252 for tb in traceback.extract_stack()+[("??",-1,None,"")]:
/external/python/cpython3/Lib/asyncio/
Dformat_helpers.py62 def extract_stack(f=None, limit=None): function
Dcoroutines.py42 self._source_traceback = format_helpers.extract_stack(sys._getframe(1))
Dfutures.py84 self._source_traceback = format_helpers.extract_stack(
Devents.py49 self._source_traceback = format_helpers.extract_stack(
/external/python/cpython3/Doc/library/
Dtraceback.rst107 .. 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/tensorflow/tensorflow/python/debug/wrappers/
Dgrpc_wrapper.py62 debug_server_urls, run_key, traceback.extract_stack(), graph,
/external/chromium-trace/catapult/devil/devil/utils/
Dreraiser_thread.py33 for filename, lineno, name, line in traceback.extract_stack(stack):
/external/python/cpython2/Lib/test/
Dtest_zipimport.py25 from traceback import extract_tb, extract_stack, print_tb
371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
Dtest_traceback.py245 return traceback.extract_stack()
/external/libchrome/mojo/public/tools/bindings/pylib/mojom/generate/
Dtest_support.py158 stack = traceback.extract_stack()
/external/python/cpython3/Lib/test/
Dtest_zipimport.py19 from traceback import extract_tb, extract_stack, print_tb
643 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
Dtest_traceback.py751 return traceback.extract_stack(frame, **kwargs)
864 return traceback.extract_stack()
/external/python/setuptools/setuptools/_vendor/
Dpyparsing.py1024 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]
/external/python/setuptools/pkg_resources/_vendor/
Dpyparsing.py1024 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]

12