Searched defs:traceback (Results 51 - 75 of 90) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
H A Dloader.py6 import traceback namespace
40 if hasattr(traceback, 'format_exc'):
43 message += '\n%s' % traceback.format_exc()
H A Dresult.py4 import traceback namespace
35 formatted traceback of the error that occurred.
147 # Skip test runner traceback levels
151 # Skip assert*() traceback levels
153 msgLines = traceback.format_exception(exctype, value, tb, length)
155 msgLines = traceback.format_exception(exctype, value, tb)
/external/chromium_org/third_party/jinja2/
H A Ddebug.py7 ugly stuff with the Python traceback system in order to achieve tracebacks
14 import traceback namespace
37 """Proxies a traceback frame."""
81 """Holds a Jinja preprocessed traceback for printing or reraising."""
84 assert frames, 'no frames for this traceback?'
98 """Return a string with the traceback."""
99 lines = traceback.format_exception(self.exc_type, self.exc_value,
104 """Return a unicode string with the traceback as rendered HTML."""
125 # the frame will be an actual traceback (or transparent proxy) if
133 """Creates a processed traceback objec
[all...]
/external/chromium_org/tools/gyp/pylib/gyp/
H A D__init__.py14 import traceback namespace
30 f = traceback.extract_stack(limit=2)
/external/chromium_org/tools/
H A Drun-bisect-perf-regression.py21 import traceback namespace
114 traceback.print_exc()
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dlocal_server.py170 import traceback namespace
171 traceback.print_exc()
/external/fonttools/Lib/fontTools/
H A Dttx.py55 -e Don't ignore decompilation errors, but show a full traceback
321 import traceback namespace
322 traceback.print_exc()
/external/fonttools/Tools/fontTools/
H A Dttx.py55 -e Don't ignore decompilation errors, but show a full traceback
321 import traceback namespace
322 traceback.print_exc()
/external/lldb/test/pexpect-2.4/examples/
H A Dcgishell.cgi20 import socket, random, string, traceback, cgi, time, getopt, getpass, threading, resource, signal namespace
282 tb_dump = traceback.format_exc()
760 tb_dump = traceback.format_exc()
H A Drippy.py72 import sys, os, re, math, stat, getopt, traceback, types, time namespace
981 tb_dump = traceback.format_exc()
/external/lldb/test/unittest2/
H A Dloader.py6 import traceback namespace
40 if hasattr(traceback, 'format_exc'):
43 message += '\n%s' % traceback.format_exc()
H A Dresult.py4 import traceback namespace
35 formatted traceback of the error that occurred.
147 # Skip test runner traceback levels
151 # Skip assert*() traceback levels
153 msgLines = traceback.format_exception(exctype, value, tb, length)
155 msgLines = traceback.format_exception(exctype, value, tb)
/external/llvm/utils/lit/lit/
H A Drun.py4 import traceback namespace
181 output += traceback.format_exc()
/external/llvm/utils/llvm-build/llvmbuild/
H A Dcomponentinfo.py466 import traceback namespace
467 traceback.print_exc()
/external/antlr/antlr-3.4/runtime/Python/
H A Dxmlrunner.py14 import traceback namespace
79 traceback.print_tb(error[2], None, tb_stream)
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dutil.py56 import traceback namespace
65 Use traceback.format_exc instead.
69 traceback.print_exc(file=out)
/external/chromium_org/build/android/pylib/device/
H A Ddecorators_test.py14 import traceback namespace
316 traceback.print_exc()
329 traceback.print_exc()
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcron_servlet.py7 import traceback namespace
75 _cronlog.error(error_message(traceback.format_exc()))
124 _cronlog.error('Caught top-level exception! %s', traceback.format_exc())
179 _cronlog.error('%s: error %s' % (title, traceback.format_exc()))
227 _cronlog.error('uncaught error: %s' % traceback.format_exc())
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dcmdline.py3 import optparse, re, sys, traceback namespace
663 traceback.print_exception(*err.args)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
H A Dutil.py56 import traceback namespace
70 Use traceback.format_exc instead.
74 traceback.print_exc(file=out)
/external/chromium_org/third_party/tlslite/tlslite/
H A Dtlsrecordlayer.py23 import traceback namespace
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dandroid_browser_backend.py311 import traceback namespace
312 traceback.print_exc()
H A Dinspector_backend.py239 import traceback namespace
240 traceback.print_exc()
/external/chromium_org/native_client_sdk/src/build_tools/
H A Dupdate_nacl_manifest.py29 import traceback namespace
942 traceback.print_exc()
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py81 import traceback namespace
115 tblist = traceback.extract_tb(sys.exc_info()[2])
118 tblist = traceback.format_list(tblist)

Completed in 944 milliseconds

1234