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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
io.py 17 streams. BytesIO is a simple stream of in-memory bytes.
45 "BytesIO", "StringIO", "BufferedIOBase",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
83 for klass in (BytesIO, BufferedReader, BufferedWriter, BufferedRandom,
_pyio.py 151 opened in a text mode, and for bytes a BytesIO can be used like a file
785 class BytesIO(BufferedIOBase):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
io.py 17 streams. BytesIO is a simple stream of in-memory bytes.
45 "BytesIO", "StringIO", "BufferedIOBase",
55 open, FileIO, BytesIO, StringIO, BufferedReader,
83 for klass in (BytesIO, BufferedReader, BufferedWriter, BufferedRandom,
_pyio.py 151 opened in a text mode, and for bytes a BytesIO can be used like a file
785 class BytesIO(BufferedIOBase):
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
directory_zipper.py 5 from io import BytesIO
28 zip_bytes = BytesIO()
  /external/chromium_org/third_party/jinja2/
_compat.py 31 from io import BytesIO, StringIO
60 from cStringIO import StringIO as BytesIO, StringIO
61 NativeStringIO = BytesIO
bccache.py 24 from jinja2._compat import BytesIO, pickle, PY2, text_type
100 self.load_bytecode(BytesIO(string))
104 out = BytesIO()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
backward.py 30 BytesIO = StringIO
32 from io import StringIO, BytesIO
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_io.py 5 # * test_memoryio - tests BytesIO and StringIO
197 class CMockFileIO(MockFileIO, io.BytesIO):
200 class PyMockFileIO(MockFileIO, pyio.BytesIO):
384 f = self.BytesIO()
388 f = self.BytesIO(data)
    [all...]
test_aifc.py 122 f = io.BytesIO()
142 f = io.BytesIO(b'\x00')
149 f = io.BytesIO()
test_memoryio.py 3 BytesIO -- for bytes
20 bytesIo = self.ioclass(buf)
24 bytesIo = self.ioclass(buf)
26 self.assertEqual(buf[:1], bytesIo.read(1))
27 self.assertEqual(buf[1:5], bytesIo.read(4))
28 self.assertEqual(buf[5:], bytesIo.read(900))
29 self.assertEqual(self.EOF, bytesIo.read())
33 bytesIo = self.ioclass(buf)
35 self.assertEqual(buf, bytesIo.read())
36 self.assertEqual(self.EOF, bytesIo.read()
    [all...]
test_zipfile.py     [all...]
test_cpickle.py 18 output = input = io.BytesIO
test_gzip.py 297 with gzip.GzipFile(fileobj=io.BytesIO(gzdata)) as f:
test_memoryview.py 242 i = io.BytesIO(b'ZZZZ')
test_sax.py 425 ioclass = io.BytesIO
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_io.py 5 # * test_memoryio - tests BytesIO and StringIO
197 class CMockFileIO(MockFileIO, io.BytesIO):
200 class PyMockFileIO(MockFileIO, pyio.BytesIO):
384 f = self.BytesIO()
388 f = self.BytesIO(data)
    [all...]
test_aifc.py 122 f = io.BytesIO()
142 f = io.BytesIO(b'\x00')
149 f = io.BytesIO()
test_memoryio.py 3 BytesIO -- for bytes
20 bytesIo = self.ioclass(buf)
24 bytesIo = self.ioclass(buf)
26 self.assertEqual(buf[:1], bytesIo.read(1))
27 self.assertEqual(buf[1:5], bytesIo.read(4))
28 self.assertEqual(buf[5:], bytesIo.read(900))
29 self.assertEqual(self.EOF, bytesIo.read())
33 bytesIo = self.ioclass(buf)
35 self.assertEqual(buf, bytesIo.read())
36 self.assertEqual(self.EOF, bytesIo.read()
    [all...]
test_zipfile.py     [all...]
test_cpickle.py 18 output = input = io.BytesIO
test_gzip.py 297 with gzip.GzipFile(fileobj=io.BytesIO(gzdata)) as f:
test_memoryview.py 242 i = io.BytesIO(b'ZZZZ')
test_sax.py 425 ioclass = io.BytesIO
  /external/chromium_org/tools/telemetry/third_party/png/
png.py     [all...]

Completed in 329 milliseconds

1 2