HomeSort by relevance Sort by last modified time
    Searched refs:IOBase (Results 1 - 25 of 25) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
53 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
78 class IOBase(_io._IOBase):
81 class RawIOBase(_io._RawIOBase, IOBase):
84 class BufferedIOBase(_io._BufferedIOBase, IOBase):
87 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 255 class IOBase:
265 Even though IOBase does not declare read, readinto, or write because
277 IOBase (and its subclasses) support the iterator protocol, meaning
278 that an IOBase object can be iterated over yielding the lines in a
281 IOBase also supports the :keyword:`with` statement. In this example,
521 io.IOBase.register(IOBase)
524 class RawIOBase(IOBase):
589 class BufferedIOBase(IOBase):
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
69 class IOBase(_io._IOBase):
72 class RawIOBase(_io._RawIOBase, IOBase):
75 class BufferedIOBase(_io._BufferedIOBase, IOBase):
78 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 256 class IOBase:
266 Even though IOBase does not declare read, readinto, or write because
278 IOBase (and its subclasses) support the iterator protocol, meaning
279 that an IOBase object can be iterated over yielding the lines in a
282 IOBase also supports the :keyword:`with` statement. In this example,
524 io.IOBase.register(IOBase)
527 class RawIOBase(IOBase):
592 class BufferedIOBase(IOBase):
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
69 class IOBase(_io._IOBase):
72 class RawIOBase(_io._RawIOBase, IOBase):
75 class BufferedIOBase(_io._BufferedIOBase, IOBase):
78 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 256 class IOBase:
266 Even though IOBase does not declare read, readinto, or write because
278 IOBase (and its subclasses) support the iterator protocol, meaning
279 that an IOBase object can be iterated over yielding the lines in a
282 IOBase also supports the :keyword:`with` statement. In this example,
524 io.IOBase.register(IOBase)
527 class RawIOBase(IOBase):
592 class BufferedIOBase(IOBase):
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
69 class IOBase(_io._IOBase):
72 class RawIOBase(_io._RawIOBase, IOBase):
75 class BufferedIOBase(_io._BufferedIOBase, IOBase):
78 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 256 class IOBase:
266 Even though IOBase does not declare read, readinto, or write because
278 IOBase (and its subclasses) support the iterator protocol, meaning
279 that an IOBase object can be iterated over yielding the lines in a
282 IOBase also supports the :keyword:`with` statement. In this example,
524 io.IOBase.register(IOBase)
527 class RawIOBase(IOBase):
592 class BufferedIOBase(IOBase):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
69 class IOBase(_io._IOBase):
72 class RawIOBase(_io._RawIOBase, IOBase):
75 class BufferedIOBase(_io._BufferedIOBase, IOBase):
78 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 256 class IOBase:
266 Even though IOBase does not declare read, readinto, or write because
278 IOBase (and its subclasses) support the iterator protocol, meaning
279 that an IOBase object can be iterated over yielding the lines in a
282 IOBase also supports the :keyword:`with` statement. In this example,
524 io.IOBase.register(IOBase)
527 class RawIOBase(IOBase):
592 class BufferedIOBase(IOBase):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
69 class IOBase(_io._IOBase):
73 class RawIOBase(_io._RawIOBase, IOBase):
76 class BufferedIOBase(_io._BufferedIOBase, IOBase):
79 class TextIOBase(_io._TextIOBase, IOBase):
  /external/python/cpython2/Lib/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
69 class IOBase(_io._IOBase):
73 class RawIOBase(_io._RawIOBase, IOBase):
76 class BufferedIOBase(_io._BufferedIOBase, IOBase):
79 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 264 class IOBase:
274 Even though IOBase does not declare read, readinto, or write because
287 IOBase (and its subclasses) support the iterator protocol, meaning
288 that an IOBase object can be iterated over yielding the lines in a
291 IOBase also supports the :keyword:`with` statement. In this example,
533 io.IOBase.register(IOBase)
536 class RawIOBase(IOBase):
601 class BufferedIOBase(IOBase):
    [all...]
  /external/python/cpython3/Lib/
io.py 4 At the top of the I/O hierarchy is the abstract base class IOBase. It
9 Extending IOBase is RawIOBase which deals simply with the reading and
19 Another IOBase subclass, TextIOBase, deals with the encoding and decoding
44 __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
72 class IOBase(_io._IOBase, metaclass=abc.ABCMeta):
75 class RawIOBase(_io._RawIOBase, IOBase):
78 class BufferedIOBase(_io._BufferedIOBase, IOBase):
81 class TextIOBase(_io._TextIOBase, IOBase):
_pyio.py 284 class IOBase(metaclass=abc.ABCMeta):
293 Even though IOBase does not declare read, readinto, or write because
307 IOBase (and its subclasses) support the iterator protocol, meaning
308 that an IOBase object can be iterated over yielding the lines in a
311 IOBase also supports the :keyword:`with` statement. In this example,
453 """Context management protocol. Returns self (an instance of IOBase)."""
552 io.IOBase.register(IOBase)
555 class RawIOBase(IOBase):
621 class BufferedIOBase(IOBase)
    [all...]
  /external/python/cpython3/Tools/scripts/
md5sum.py 28 if files and isinstance(files[-1], io.IOBase):
  /external/python/cpython3/Lib/test/
test_io.py 650 self._check_base_destructor(self.IOBase)
797 self.IOBase(),
897 # class which inherits IOBase and an object of this class are caught
899 class MyIO(self.IOBase):
    [all...]
test_urllib2.py 297 class MockHTTPResponse(io.IOBase):
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_io.py 480 self._check_base_destructor(self.IOBase)
    [all...]
  /external/python/cpython2/Lib/test/
test_io.py 502 self._check_base_destructor(self.IOBase)
682 # class which inherits IOBase and an object of this class are caught
684 class MyIO(self.IOBase):
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_io.py 491 self._check_base_destructor(self.IOBase)
616 # class which inherits IOBase and an object of this class are caught
618 class MyIO(self.IOBase):
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_io.py 491 self._check_base_destructor(self.IOBase)
616 # class which inherits IOBase and an object of this class are caught
618 class MyIO(self.IOBase):
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_io.py 491 self._check_base_destructor(self.IOBase)
616 # class which inherits IOBase and an object of this class are caught
618 class MyIO(self.IOBase):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_io.py 491 self._check_base_destructor(self.IOBase)
616 # class which inherits IOBase and an object of this class are caught
618 class MyIO(self.IOBase):
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h     [all...]

Completed in 1244 milliseconds