Home
last modified time | relevance | path

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

/external/autotest/tko/parsers/
Dbase.py37 "".join(traceback.format_stack()))
/external/autotest/client/cros/cellular/mbim_compliance/
Dmbim_errors.py405 trace = traceback.format_stack()
/external/tensorflow/tensorflow/python/ops/
Dtemplate.py293 self._stacktrace = traceback.format_stack()[:-2]
373 traceback.format_stack()))
650 traceback.format_stack()))
Dtensor_array_ops.py1312 "".join(traceback.format_stack())))
/external/tensorflow/tensorflow/python/platform/
Dtf_logging.py68 sinfo = '\n'.join(_traceback.format_stack())
79 sinfo = '\n'.join(_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.py161 '\n'.join(traceback.format_stack()))
296 '\n'.join(traceback.format_stack()))
/external/autotest/client/cros/cellular/
Dprologix_scpi_driver.py52 self.connection_data = {self.connection_key: traceback.format_stack()}
/external/tensorflow/tensorflow/python/util/
Dtf_should_use.py74 for line in traceback.format_stack(self._stack_frame, limit=5)])
/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.py156 first = traceback.format_stack()
157 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.py283 stfmt = traceback.format_stack(sys._getframe(1))
491 return traceback.format_stack()
/external/autotest/client/common_lib/
Dbase_job.py667 logging.warning(traceback.format_stack())
/external/tensorflow/tensorflow/python/autograph/operators/
Dcontrol_flow.py910 '', self.iterations, new_ops, '\n'.join(traceback.format_stack()))
/external/python/cpython3/Misc/NEWS.d/
D3.5.1rc1.rst675 format_stack(), and extract_stack() called without arguments.