/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...] |
test_profile.py | 102 4 -0.004 -0.001 -0.004 -0.001 :0(exc_info) 126 :0(exc_info) <- profilee.py:73(helper1)(4) 119.964 155 :0(exc_info) -> 173 :0(exc_info)(4) -0.004
|
profilee.py | 82 sys.exc_info() # 0
|
/prebuilts/python/linux-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...] |
test_profile.py | 102 4 -0.004 -0.001 -0.004 -0.001 :0(exc_info) 126 :0(exc_info) <- profilee.py:73(helper1)(4) 119.964 155 :0(exc_info) -> 173 :0(exc_info)(4) -0.004
|
profilee.py | 82 sys.exc_info() # 0
|
/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
|
types.py | 69 tb = sys.exc_info()[2]
|
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...] |
/prebuilts/python/linux-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
|
types.py | 69 tb = sys.exc_info()[2]
|
/external/chromium_org/ppapi/generators/ |
generator.py | 51 typeinfo, value, tb = sys.exc_info()
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
page_test_results_unittest.py | 39 return sys.exc_info()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
execfile.py | 61 _, err, _ = sys.exc_info() 121 # Get the exc_info, and pack them into an exception that we can 125 typ, err, tb = sys.exc_info()
|
summary.py | 70 typ, msg = sys.exc_info()[:2]
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
result.py | 106 returned by sys.exc_info(). 114 returned by sys.exc_info().""" 145 """Converts a sys.exc_info()-style tuple of values into a string."""
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 114 returned by sys.exc_info(). 122 returned by sys.exc_info().""" 153 """Converts a sys.exc_info()-style tuple of values into a string."""
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 114 returned by sys.exc_info(). 122 returned by sys.exc_info().""" 153 """Converts a sys.exc_info()-style tuple of values into a string."""
|
/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...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/ |
message_pool.py | 264 self._raise(sys.exc_info()) 266 self._raise(sys.exc_info()) 291 def _raise(self, exc_info): 292 exception_type, exception_value, exception_traceback = exc_info
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
stack_utils_unittest.py | 71 stack_utils.log_traceback(logger, sys.exc_info()[2])
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
caching_file_system.py | 100 return Future(exc_info=sys.exc_info())
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/ |
test_runner.py | 47 def addError(self, test, exc_info): 48 self.errors.append((test, exc_info))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/ |
test_runner.py | 47 def addError(self, test, exc_info): 48 self.errors.append((test, exc_info))
|