Home
last modified time | relevance | path

Searched refs:format_stack (Results 1 – 17 of 17) sorted by relevance

/external/autotest/tko/parsers/
Dbase.py36 "".join(traceback.format_stack()))
55 "".join(traceback.format_stack()))
/external/tensorflow/tensorflow/python/ops/
Dtemplate.py281 self._stacktrace = traceback.format_stack()[:-2]
360 traceback.format_stack()))
631 traceback.format_stack()))
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_errors.py405 trace = traceback.format_stack()
/external/python/cpython2/Doc/library/
Dtraceback.rst128 .. function:: format_stack([f[, limit]])
252 ... print repr(traceback.format_stack())
266 ' File "<doctest>", line 8, in lumberstack\n print repr(traceback.format_stack())\n']
/external/toolchain-utils/cros_utils/
Dlogger.py157 '\n'.join(traceback.format_stack()))
297 '\n'.join(traceback.format_stack()))
/external/tensorflow/tensorflow/python/util/
Dtf_should_use.py64 [line.rstrip() for line in traceback.format_stack(self._stack_frame)])
/external/autotest/client/cros/cellular/
Dprologix_scpi_driver.py52 self.connection_data = {self.connection_key: traceback.format_stack()}
/external/tensorflow/tensorflow/python/platform/
Dtf_logging.py67 sinfo = '\n'.join(_traceback.format_stack())
/external/python/cpython2/Lib/test/
Dtest_traceback.py226 return traceback.format_stack()
Dtest_signal.py52 return ''.join(traceback.format_stack(frame, limit=limit))
/external/python/cpython2/Lib/
Dtraceback.py272 def format_stack(f=None, limit=None): function
/external/python/cpython3/Doc/library/
Dtraceback.rst158 .. function:: format_stack(f=None, limit=None)
457 ... print(repr(traceback.format_stack()))
471 ' File "<doctest>", line 8, in lumberstack\n print(repr(traceback.format_stack()))\n']
/external/tensorflow/tensorflow/python/kernel_tests/
Dtemplate_test.py157 first = traceback.format_stack()
158 second = traceback.format_stack()
/external/python/cpython3/Lib/
Dtraceback.py193 def format_stack(f=None, limit=None): function
/external/python/cpython3/Lib/test/
Dtest_traceback.py285 stfmt = traceback.format_stack(sys._getframe(1))
493 return traceback.format_stack()
/external/autotest/client/common_lib/
Dbase_job.py658 logging.warning(traceback.format_stack())
/external/python/cpython3/Misc/NEWS.d/
D3.5.1rc1.rst675 format_stack(), and extract_stack() called without arguments.