HomeSort by relevance Sort by last modified time
    Searched refs:exc_info (Results 26 - 50 of 166) sorted by null

12 3 4 5 6 7

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
profilee.py 82 sys.exc_info() # 0
test_with.py 72 if not self.__exit__(*sys.exc_info()):
76 def __exit__(self, *exc_info):
80 ex = exc_info
86 ex = sys.exc_info()
88 if ex is not exc_info:
103 def __exit__(self, *exc_info):
105 self.exit_args = exc_info
106 return Nested.__exit__(self, *exc_info)
679 def __exit__(self, *exc_info):
681 self.exc_info = exc_inf
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
types.py 69 tb = sys.exc_info()[2]
traceback.py 226 (In fact, it uses sys.exc_info() to retrieve the same information
231 etype, value, tb = sys.exc_info()
240 etype, value, tb = sys.exc_info()
268 f = sys.exc_info()[2].tb_frame.f_back
277 f = sys.exc_info()[2].tb_frame.f_back
293 f = sys.exc_info()[2].tb_frame.f_back
doctest.py 237 def _exception_traceback(exc_info):
240 exc_info tuple (as returned by sys.exc_info()).
244 exc_type, exc_val, exc_tb = exc_info
    [all...]
code.py 124 type, value, sys.last_traceback = sys.exc_info()
150 type, value, tb = sys.exc_info()
SimpleXMLRPCServer.py 270 exc_type, exc_value, exc_tb = sys.exc_info()
371 exc_type, exc_value, exc_tb = sys.exc_info()
635 exc_type, exc_value = sys.exc_info()[:2]
site.py 162 for record in traceback.format_exception(*sys.exc_info()):
503 sys.excepthook(*sys.exc_info())
517 sys.excepthook(*sys.exc_info())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
traceback.py 226 (In fact, it uses sys.exc_info() to retrieve the same information
231 etype, value, tb = sys.exc_info()
240 etype, value, tb = sys.exc_info()
268 f = sys.exc_info()[2].tb_frame.f_back
277 f = sys.exc_info()[2].tb_frame.f_back
293 f = sys.exc_info()[2].tb_frame.f_back
doctest.py 237 def _exception_traceback(exc_info):
240 exc_info tuple (as returned by sys.exc_info()).
244 exc_type, exc_val, exc_tb = exc_info
    [all...]
code.py 124 type, value, sys.last_traceback = sys.exc_info()
150 type, value, tb = sys.exc_info()
SimpleXMLRPCServer.py 270 exc_type, exc_value, exc_tb = sys.exc_info()
371 exc_type, exc_value, exc_tb = sys.exc_info()
635 exc_type, exc_value = sys.exc_info()[:2]
site.py 162 for record in traceback.format_exception(*sys.exc_info()):
503 sys.excepthook(*sys.exc_info())
517 sys.excepthook(*sys.exc_info())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_with.py 72 if not self.__exit__(*sys.exc_info()):
76 def __exit__(self, *exc_info):
80 ex = exc_info
86 ex = sys.exc_info()
88 if ex is not exc_info:
103 def __exit__(self, *exc_info):
105 self.exit_args = exc_info
106 return Nested.__exit__(self, *exc_info)
679 def __exit__(self, *exc_info):
681 self.exc_info = exc_inf
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py 79 return sys.exc_info()[2].tb_frame.f_back
243 msg, args, exc_info, func=None):
275 self.exc_info = exc_info
468 if record.exc_info:
472 record.exc_text = self.formatException(record.exc_info)
799 ei = sys.exc_info()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py 79 return sys.exc_info()[2].tb_frame.f_back
243 msg, args, exc_info, func=None):
275 self.exc_info = exc_info
468 if record.exc_info:
472 record.exc_text = self.formatException(record.exc_info)
799 ei = sys.exc_info()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
run.py 109 type, value, tb = sys.exc_info()
159 typ, val, tb = excinfo = sys.exc_info()
314 self.usr_exc_info = sys.exc_info()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
run.py 109 type, value, tb = sys.exc_info()
159 typ, val, tb = excinfo = sys.exc_info()
314 self.usr_exc_info = sys.exc_info()
  /external/chromium_org/build/android/pylib/utils/
reraiser_thread.py 51 self._exc_info = sys.exc_info()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
message_pool.py 265 self._raise(sys.exc_info())
267 self._raise(sys.exc_info())
289 def _raise(self, exc_info):
290 exception_type, exception_value, exception_traceback = exc_info
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
summary.py 70 typ, msg = sys.exc_info()[:2]
templite.py 126 exc_class, exc, _ = sys.exc_info()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
case.py 39 def __init__(self, exc_info):
42 self.exc_info = exc_info
91 raise _ExpectedFailure(sys.exc_info())
337 result.addError(self, sys.exc_info())
342 result.addFailure(self, sys.exc_info())
346 addExpectedFailure(self, e.exc_info)
358 result.addFailure(self, sys.exc_info())
362 result.addError(self, sys.exc_info())
369 result.addError(self, sys.exc_info())
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
case.py 41 def __init__(self, exc_info):
43 self.exc_info = exc_info
93 raise _ExpectedFailure(sys.exc_info())
328 result.addError(self, sys.exc_info())
335 result.addFailure(self, sys.exc_info())
339 addExpectedFailure(self, e.exc_info)
351 result.addFailure(self, sys.exc_info())
355 result.addError(self, sys.exc_info())
364 result.addError(self, sys.exc_info())
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
case.py 41 def __init__(self, exc_info):
43 self.exc_info = exc_info
93 raise _ExpectedFailure(sys.exc_info())
328 result.addError(self, sys.exc_info())
335 result.addFailure(self, sys.exc_info())
339 addExpectedFailure(self, e.exc_info)
351 result.addFailure(self, sys.exc_info())
355 result.addError(self, sys.exc_info())
364 result.addError(self, sys.exc_info())
    [all...]

Completed in 1826 milliseconds

12 3 4 5 6 7