HomeSort by relevance Sort by last modified time
    Searched defs:__exit__ (Results 201 - 225 of 414) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
shared_prefs.py 354 def __exit__(self, exc_type, _exc_value, _traceback): member in class:SharedPrefs
  /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
648 def __exit__(self, type, value, tb): member in class:StreamReader
735 def __exit__(self, type, value, tb): member in class:StreamReaderWriter
851 def __exit__(self, type, value, tb): member in class:StreamRecoder
    [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/
regrtest.py 844 # XXX Making a copy keeps objects alive until __exit__ gets called.
890 def __exit__(self, exc_type, exc_val, exc_tb): member in class:saved_test_environment
    [all...]
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 572 def __exit__(self, *args): member in class:FieldStorage
    [all...]
codecs.py 413 def __exit__(self, type, value, tb): member in class:StreamWriter
660 def __exit__(self, type, value, tb): member in class:StreamReader
747 def __exit__(self, type, value, tb): member in class:StreamReaderWriter
857 def __exit__(self, type, value, tb): member in class:StreamRecoder
    [all...]
functools.py 31 def __exit__(self, exctype, excinst, exctb): pass member in class:RLock
socket.py 151 def __exit__(self, *args): member in class:socket
socketserver.py 387 def __exit__(self, *args): member in class:BaseServer
subprocess.py 741 def __exit__(self, type, value, traceback): member in class:Popen
    [all...]
sunau.py 174 def __exit__(self, *args): member in class:Au_read
323 def __exit__(self, *args): member in class:Au_write
wave.py 175 def __exit__(self, *args): member in class:Wave_read
321 def __exit__(self, *args): member in class:Wave_write
  /external/python/cpython3/Lib/asyncio/
unix_events.py 768 def __exit__(self, a, b, c): member in class:AbstractChildWatcher
852 def __exit__(self, a, b, c): member in class:SafeChildWatcher
940 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
580 def __exit__(self, exc_type, exc_val, exc_tb): member in class:Executor
  /external/python/cpython3/Lib/multiprocessing/
pool.py 574 def __exit__(self, exc_type, exc_val, exc_tb): member in class:Pool
util.py 335 def __exit__(self, *args): member in class:ForkAwareThreadLock
336 return self._lock.__exit__(*args)
  /external/python/cpython3/Lib/test/libregrtest/
save_env.py 136 # XXX Making a copy keeps objects alive until __exit__ gets called.
268 def __exit__(self, exc_type, exc_val, exc_tb): member in class:saved_test_environment
  /external/python/cpython3/Lib/test/
test_raise.py 23 def __exit__(self, exc_type, exc_value, exc_tb): member in class:Context
319 def __exit__(self, t, v, tb): member in class:TestContext.test_context_manager.ContextManager
  /external/python/futures/concurrent/futures/
_base.py 150 def __exit__(self, *args): member in class:_AcquireFutures
665 def __exit__(self, exc_type, exc_val, exc_tb): member in class:Executor
  /external/tensorflow/tensorflow/contrib/graph_editor/
subgraph.py 550 def __exit__(self, exc_type, exc_value, traceback): member in class:SubGraphView
  /external/tensorflow/tensorflow/python/client/
session.py 1539 def __exit__(self, exec_type, exec_value, exec_tb): member in class:Session
    [all...]

Completed in 624 milliseconds

1 2 3 4 5 6 7 891011>>