/external/chromium-trace/catapult/devil/devil/android/sdk/ |
shared_prefs.py | 403 def __exit__(self, exc_type, _exc_value, _traceback): member in class:SharedPrefs
|
/external/fonttools/Lib/fontTools/misc/ |
py23.py | 493 def __exit__(self, exctype, excinst, exctb): member in class:._RedirectStream
|
/external/fonttools/Lib/fontTools/ttLib/ |
ttFont.py | 148 def __exit__(self, type, value, traceback): member in class:TTFont
|
/external/grpc-grpc/src/python/grpcio/grpc/ |
_interceptor.py | 452 def __exit__(self, exc_type, exc_val, exc_tb): member in class:_Channel
|
/external/grpc-grpc/src/python/grpcio/grpc/beta/ |
_client_adaptations.py | 654 def __exit__(self, exc_type, exc_val, exc_tb): member in class:_GenericStub 682 def __exit__(self, exc_type, exc_val, exc_tb): member in class:_DynamicStub
|
_server_adaptations.py | 371 def __exit__(self, exc_type, exc_val, exc_tb): member in class:_Server
|
/external/grpc-grpc/src/python/grpcio_tests/tests/fork/ |
methods.py | 110 def __exit__(self, type, value, traceback): member in class:_Pipe
|
/external/grpc-grpc/src/python/grpcio_tests/tests/interop/ |
methods.py | 229 def __exit__(self, type, value, traceback): member in class:_Pipe
|
/external/python/cpython2/Lib/ |
_weakrefset.py | 26 def __exit__(self, e, t, b): member in class:_IterationGuard
|
codecs.py | 406 def __exit__(self, type, value, tb): member in class:StreamWriter 650 def __exit__(self, type, value, tb): member in class:StreamReader 737 def __exit__(self, type, value, tb): member in class:StreamReaderWriter 853 def __exit__(self, type, value, tb): member in class:StreamRecoder [all...] |
subprocess.py | 895 def __exit__(self, *args): pass member in class:Popen.poll._close_fds._noop_context_manager [all...] |
tempfile.py | 436 # Need to trap __exit__ as well to ensure the file gets 438 def __exit__(self, exc, value, tb): function in function:_TemporaryFileWrapper.__enter__ 439 result = self.file.__exit__(exc, value, tb) 443 def __exit__(self, exc, value, tb): function in function:_TemporaryFileWrapper.__enter__ 444 self.file.__exit__(exc, value, tb) 561 def __exit__(self, exc, value, tb): member in class:SpooledTemporaryFile
|
/external/python/cpython2/Lib/test/ |
test_compiler.py | 14 def __exit__(self, *exc_info): member in class:TrivialContext 207 def __exit__(self, *args): member in class:CompilerTest.testWithMult.Ctx
|
test_contextlib.py | 52 # Calling __exit__ should not result in an exception 53 self.assertFalse(ctx.__exit__(TypeError, TypeError("foo"), None)) 65 RuntimeError, ctx.__exit__, TypeError, TypeError("foo"), None 166 def __exit__(self, *exc_info): member in class:NestedTestCase.test_nested_right_exception.b
|
/external/python/cpython3/Lib/ |
_weakrefset.py | 26 def __exit__(self, e, t, b): member in class:_IterationGuard
|
cgi.py | 502 def __exit__(self, *args): member in class:FieldStorage [all...] |
codecs.py | 414 def __exit__(self, type, value, tb): member in class:StreamWriter 663 def __exit__(self, type, value, tb): member in class:StreamReader 750 def __exit__(self, type, value, tb): member in class:StreamReaderWriter 860 def __exit__(self, type, value, tb): member in class:StreamRecoder [all...] |
contextlib.py | 23 def __exit__(self, exc_type, exc_value, traceback): member in class:AbstractContextManager 30 return _collections_abc._check_methods(C, "__enter__", "__exit__") 116 def __exit__(self, type, value, traceback): member in class:_GeneratorContextManager 148 # passed to throw(), because __exit__() must not raise 149 # an exception unless __exit__() itself failed. But throw() 152 # and the __exit__() protocol. 185 # See _GeneratorContextManager.__exit__ for comments on subtleties 297 def __exit__(self, *exc_info): member in class:closing 315 def __exit__(self, exctype, excinst, exctb): member in class:_RedirectStream 358 def __exit__(self, exctype, excinst, exctb) member in class:suppress 468 def __exit__(self, *exc_details): member in class:ExitStack 676 def __exit__(self, *excinfo): member in class:nullcontext [all...] |
socket.py | 158 def __exit__(self, *args): member in class:socket
|
socketserver.py | 386 def __exit__(self, *args): member in class:BaseServer
|
subprocess.py | 328 # We don't call p.wait() again as p.__exit__ does that for us. 482 # We don't call process.wait() as .__exit__ does that for us. 822 def __exit__(self, exc_type, value, traceback): member in class:Popen [all...] |
/external/python/cpython3/Lib/asyncio/ |
unix_events.py | 834 def __exit__(self, a, b, c): member in class:AbstractChildWatcher 918 def __exit__(self, a, b, c): member in class:SafeChildWatcher 1006 def __exit__(self, a, b, c): member in class:FastChildWatcher [all...] |
/external/python/cpython3/Lib/concurrent/futures/ |
_base.py | 148 def __exit__(self, *args): member in class:_AcquireFutures 610 def __exit__(self, exc_type, exc_val, exc_tb): member in class:Executor
|
/external/python/cpython3/Lib/multiprocessing/ |
pool.py | 622 def __exit__(self, exc_type, exc_val, exc_tb): member in class:Pool
|
util.py | 346 def __exit__(self, *args): member in class:ForkAwareThreadLock 347 return self._lock.__exit__(*args)
|