Home
last modified time | relevance | path

Searched refs:BufferedIOBase (Results 1 – 25 of 51) sorted by relevance

123

/external/tensorflow/tensorflow/lite/ios/
Dextract_object_files.py48 def extract_object_files(archive_file: io.BufferedIOBase, argument
112 def _check_archive_signature(archive_file: io.BufferedIOBase) -> None: argument
130 archive_file: io.BufferedIOBase) -> Iterator[Tuple[str, bytes]]: argument
/external/python/cpython2/Lib/
Dio.py76 class BufferedIOBase(_io._BufferedIOBase, IOBase): class
86 BufferedIOBase.register(klass)
D_pyio.py601 class BufferedIOBase(IOBase): class
683 io.BufferedIOBase.register(BufferedIOBase)
686 class _BufferedIOMixin(BufferedIOBase):
792 class BytesIO(BufferedIOBase):
1158 class BufferedRWPair(BufferedIOBase):
Dgzip.py36 class GzipFile(io.BufferedIOBase):
Dzipfile.py501 class ZipExtFile(io.BufferedIOBase):
570 return io.BufferedIOBase.readline(self, limit)
/external/python/cpython3/Lib/
Dio.py78 class BufferedIOBase(_io._BufferedIOBase, IOBase): class
88 BufferedIOBase.register(klass)
Dsocketserver.py131 from io import BufferedIOBase
787 class _SocketWriter(BufferedIOBase):
D_compression.py9 class BaseStream(io.BufferedIOBase):
D_pyio.py674 class BufferedIOBase(IOBase): class
777 io.BufferedIOBase.register(BufferedIOBase)
780 class _BufferedIOMixin(BufferedIOBase):
887 class BytesIO(BufferedIOBase):
1329 class BufferedRWPair(BufferedIOBase):
/external/python/cpython3/Doc/library/
Dio.rst90 :class:`BufferedIOBase`.
187 example, :class:`BufferedIOBase` provides unoptimized implementations of
199 The :class:`BufferedIOBase` ABC extends :class:`IOBase`. It deals with
204 Another :class:`BufferedIOBase` subclass, :class:`BytesIO`, is a stream of
210 interface to a buffered raw stream (:class:`BufferedIOBase`). Finally,
230 :class:`BufferedIOBase` :class:`IOBase` ``detach``, ``read``, Inherited :class:`IOBase` …
446 .. class:: BufferedIOBase
464 A typical :class:`BufferedIOBase` implementation should not inherit from a
468 :class:`BufferedIOBase` provides or overrides these data attributes and
474 :class:`BufferedIOBase` deals with. This is not part of the
[all …]
Dgzip.rst114 :class:`GzipFile` supports the :class:`io.BufferedIOBase` interface,
154 The :meth:`io.BufferedIOBase.read1` method is now implemented.
162 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
Dbz2.rst92 :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`.
130 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
Dsocketserver.rst435 :class:`io.BufferedIOBase` readable interface, and
437 :class:`io.BufferedIOBase` writable interface.
441 :class:`io.BufferedIOBase` writable interface.
Dhttp.server.rst117 An :class:`io.BufferedIOBase` input stream, ready to read from
128 This is an :class:`io.BufferedIOBase` stream.
Dlzma.rst103 :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`.
123 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
/external/python/cpython2/Doc/library/
Dio.rst39 :class:`BufferedIOBase` deals with buffering on a raw byte stream
50 (:class:`BufferedIOBase`). Finally, :class:`~io.StringIO` is an in-memory
175 :class:`BufferedIOBase`. The exact class varies: in read binary mode, it
411 .. class:: BufferedIOBase
429 A typical :class:`BufferedIOBase` implementation should not inherit from a
433 :class:`BufferedIOBase` provides or overrides these methods and attribute in
439 :class:`BufferedIOBase` deals with. This is not part of the
440 :class:`BufferedIOBase` API and may not exist on some implementations.
474 are implementing your own buffering on top of a :class:`BufferedIOBase`
553 :class:`BufferedIOBase`.
[all …]
/external/fonttools/Lib/fontTools/misc/
Detree.py285 if isinstance(file_or_filename, io.BufferedIOBase):
293 buf = io.BufferedIOBase()
/external/python/cpython2/Lib/xml/sax/
Dsaxutils.py83 buffer = io.BufferedIOBase(out)
90 buffer = io.BufferedIOBase()
/external/python/cpython3/Lib/test/
Dtest_winconsoleio.py21 self.assertFalse(issubclass(ConIO, io.BufferedIOBase))
Dtest_io.py461 writable = self.BufferedIOBase.writable
462 write = self.BufferedIOBase.write
467 readable = self.BufferedIOBase.readable
468 read = self.BufferedIOBase.read
487 elif isinstance(obj, (self.BufferedIOBase, self.RawIOBase)):
703 self._check_base_destructor(self.BufferedIOBase)
907 class Stream(self.BufferedIOBase):
957 class Reader(self.BufferedIOBase):
4001 self.assertIsInstance(self.BufferedIOBase, abc.ABCMeta)
4008 self.assertNotIsInstance(f, abcmodule.BufferedIOBase)
[all …]
Dtest_socketserver.py397 self.assertIsInstance(server.wfile, io.BufferedIOBase)
/external/python/cpython3/Lib/xml/sax/
Dsaxutils.py97 buffer = io.BufferedIOBase()
/external/python/cpython3/Lib/xml/etree/
DElementTree.py781 if isinstance(file_or_filename, io.BufferedIOBase):
791 file = io.BufferedIOBase()
1116 class _ListDataStream(io.BufferedIOBase):
/external/python/cpython2/Misc/NEWS.d/
D2.7a2.rst198 implement the ``io.BufferedIOBase`` ABC to allow for further speedups by
/external/python/apitools/apitools/base/py/
Dgzip.py106 class GzipFile(io.BufferedIOBase):

123