/external/grpc-grpc/src/python/grpcio/grpc/ |
_channel.py | 966 def __exit__(self, exc_type, exc_val, exc_tb): member in class:Channel [all...] |
/external/libnl/python/netlink/route/ |
link.py | 158 def __exit__(self, exc_type, exc_value, tb): member in class:Link
|
/external/python/cpython2/Lib/ |
_pyio.py | 437 def __exit__(self, *args): member in class:IOBase [all...] |
threading.py | 215 def __exit__(self, t, v, tb): member in class:_RLock 288 def __exit__(self, *args): member in class:_Condition 289 return self.__lock.__exit__(*args) 493 def __exit__(self, t, v, tb): member in class:_Semaphore [all...] |
/external/python/cpython2/Lib/lib2to3/tests/data/ |
py2_test_grammar.py | 927 def __exit__(self, *args): member in class:GrammarTests.test_with_statement.manager
|
py3_test_grammar.py | 875 def __exit__(self, *args): member in class:GrammarTests.test_with_statement.manager
|
/external/python/cpython2/Lib/multiprocessing/ |
managers.py | 601 def __exit__(self, exc_type, exc_val, exc_tb): member in class:BaseManager 992 def __exit__(self, exc_type, exc_val, exc_tb): member in class:AcquirerProxy [all...] |
/external/python/cpython2/Lib/test/ |
regrtest.py | 1262 def __exit__(self, exc_type, exc_val, exc_tb): member in class:saved_test_environment [all...] |
test_grammar.py | 1150 def __exit__(self, *args): member in class:GrammarTests.test_with_statement.manager [all...] |
test_with.py | 25 def __exit__(self, type, value, traceback): member in class:MockContextManager 28 return GeneratorContextManager.__exit__(self, type, 70 if not self.__exit__(*sys.exc_info()): 74 def __exit__(self, *exc_info): member in class:Nested 81 if mgr.__exit__(*ex): 101 def __exit__(self, *exc_info): member in class:MockNested 104 return Nested.__exit__(self, *exc_info) 115 def __exit__(self, type, value, traceback): member in class:FailureTestCase.testEnterAttributeError.LacksEnter 164 def __exit__(self, *args): member in class:FailureTestCase.testEnterThrows.EnterThrows 179 def __exit__(self, *args) member in class:FailureTestCase.testExitThrows.ExitThrows 463 def __exit__(self, type, value, traceback): member in class:ExceptionalTestCase.testRaisedStopIteration2.cm 502 def __exit__(self, type, value, traceback): member in class:ExceptionalTestCase.testRaisedGeneratorExit2.cm 523 def __exit__(self, a, b, c): member in class:ExceptionalTestCase.testErrorsInBool.cm 621 def __exit__(self, t, v, tb): pass member in class:AssignmentTargetTestCase.testMultipleComplexTargets.C 642 def __exit__(self, t, v, tb): return True member in class:ExitSwallowsExceptionTestCase.testExitTrueSwallowsException.AfricanSwallow 652 def __exit__(self, t, v, tb): return False member in class:ExitSwallowsExceptionTestCase.testExitFalseDoesntSwallowException.EuropeanSwallow 677 def __exit__(self, *exc_info): member in class:NestedWith.Dummy 688 def __exit__(self, *exc_info): pass member in class:NestedWith.EnterRaises 692 def __exit__(self, *exc_info): raise RuntimeError() member in class:NestedWith.ExitRaises [all...] |
/external/python/cpython2/Lib/unittest/ |
case.py | 109 def __exit__(self, exc_type, exc_value, tb): member in class:_AssertRaisesContext [all...] |
/external/python/cpython3/Lib/ |
_pyio.py | 454 def __exit__(self, *args): member in class:IOBase [all...] |
nntplib.py | 362 def __exit__(self, *args): member in class:_NNTPBase [all...] |
telnetlib.py | 643 def __exit__(self, type, value, traceback): member in class:Telnet
|
threading.py | 179 def __exit__(self, t, v, tb): member in class:_RLock 243 def __exit__(self, *args): member in class:Condition 244 return self._lock.__exit__(*args) 446 def __exit__(self, t, v, tb): member in class:Semaphore [all...] |
/external/python/cpython3/Lib/lib2to3/tests/data/ |
py2_test_grammar.py | 927 def __exit__(self, *args): member in class:GrammarTests.test_with_statement.manager
|
py3_test_grammar.py | 899 def __exit__(self, *args): member in class:GrammarTests.test_with_statement.manager
|
/external/python/cpython3/Lib/test/ |
test_bdb.py | 428 def __exit__(self, type_=None, value=None, traceback=None): member in class:TracerRun [all...] |
test_exceptions.py | 649 def __exit__ (self, exc_type, exc_value, exc_tb): member in class:ExceptionTests.testExceptionCleanupState.Context [all...] |
test_with.py | 24 def __exit__(self, type, value, traceback): member in class:MockContextManager 27 return _GeneratorContextManager.__exit__(self, type, 69 if not self.__exit__(*sys.exc_info()): 73 def __exit__(self, *exc_info): member in class:Nested 80 if mgr.__exit__(*ex): 100 def __exit__(self, *exc_info): member in class:MockNested 103 return Nested.__exit__(self, *exc_info) 114 def __exit__(self, type, value, traceback): member in class:FailureTestCase.testEnterAttributeError1.LacksEnter 139 self.assertRaisesRegex(AttributeError, '__exit__', fooLacksExit) 167 def __exit__(self, *args) member in class:FailureTestCase.testEnterThrows.EnterThrows 182 def __exit__(self, *args): member in class:FailureTestCase.testExitThrows.ExitThrows 469 def __exit__(self, type, value, traceback): member in class:ExceptionalTestCase.testRaisedStopIteration2.cm 510 def __exit__(self, type, value, traceback): member in class:ExceptionalTestCase.testRaisedGeneratorExit2.cm 531 def __exit__(self, a, b, c): member in class:ExceptionalTestCase.testErrorsInBool.cm 629 def __exit__(self, t, v, tb): pass member in class:AssignmentTargetTestCase.testMultipleComplexTargets.C 650 def __exit__(self, t, v, tb): return True member in class:ExitSwallowsExceptionTestCase.testExitTrueSwallowsException.AfricanSwallow 660 def __exit__(self, t, v, tb): return False member in class:ExitSwallowsExceptionTestCase.testExitFalseDoesntSwallowException.EuropeanSwallow 685 def __exit__(self, *exc_info): member in class:NestedWith.Dummy 696 def __exit__(self, *exc_info): pass member in class:NestedWith.EnterRaises 700 def __exit__(self, *exc_info): raise RuntimeError() member in class:NestedWith.ExitRaises [all...] |
/external/scapy/scapy/ |
utils.py | 439 def __exit__(self, exc_type, exc_value, traceback): member in class:ContextManagerSubprocess 472 def __exit__(self, *exc): member in class:ContextManagerCaptureOutput 868 def __exit__(self, exc_type, exc_value, tracback): member in class:RawPcapReader 1165 def __exit__(self, exc_type, exc_value, tracback): function [all...] |
/external/tensorflow/tensorflow/contrib/tpu/python/tpu/ |
keras_support.py | 505 def __exit__(self, exc_type, exc_val, exc_tb): member in class:TPURewriteContext [all...] |
/external/tensorflow/tensorflow/python/distribute/ |
distribute_lib.py | 73 def __exit__(self, exception_type, exception_value, traceback): member in class:UpdateContext 190 def __exit__(self, exception_type, exception_value, traceback): member in class:_CurrentDistributionContext 192 self._device_scope.__exit__(exception_type, exception_value, traceback) 193 self._var_creator_scope.__exit__(exception_type, exception_value, traceback) 195 self._var_scope.__exit__(exception_type, exception_value, traceback) 208 def __exit__(self, exception_type, exception_value, traceback): member in class:_SameScopeAgainContext 1404 def __exit__(self, exception_type, exception_value, traceback): member in class:ReplicaContext [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
zipfile.py | 800 def __exit__(self, type, value, traceback):
member in class:ZipFile [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
zipfile.py | 739 def __exit__(self, type, value, traceback):
member in class:ZipFile [all...] |