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

1 2 3 4

  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/tests/
test_bigfile.py 5 from StringIO import StringIO as BytesIO
7 from io import BytesIO
22 infile = BytesIO(message)
23 outfile = BytesIO()
30 cryptfile = BytesIO(crypto)
31 clearfile = BytesIO()
49 msgfile = BytesIO(b('123456Sybren'))
57 msgfile = BytesIO(b('123456sybren'))
test_varblock.py 5 from StringIO import StringIO as BytesIO
7 from io import BytesIO
19 infile = BytesIO(encoded)
33 infile = BytesIO(encoded)
47 outfile = BytesIO()
58 outfile = BytesIO()
69 infile = BytesIO(b('\x01\x0512345\x06Sybren'))
78 infile = BytesIO(b('123456Sybren'))
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/
test_util.py 8 from io import BytesIO
10 from cStringIO import StringIO as BytesIO
34 fp = BytesIO(b"# coding: utf-8")
37 fp = BytesIO(b"\n# coding: utf-8")
40 fp = BytesIO(b"# coding: latin-1")
43 fp = BytesIO(b"\n# coding: latin-1")
46 fp = BytesIO(b"#!/usr/bin/env/python\n# vim: set fileencoding=latin-1 :")
49 fp = BytesIO(b"\n\n\n# coding: latin-1")
  /prebuilts/gdb/darwin-x86/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,
  /prebuilts/gdb/linux-x86/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,
  /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,
  /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,
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_gzipper.py 18 actual = gzip.GzipFile(fileobj=six.BytesIO(res.body)).read()
test_request_form.py 21 'wsgi.input': six.BytesIO(body),
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
test_stream.py 6 from io import BytesIO
16 fp = BufferedStream(BytesIO(s))
21 fp = BufferedStream(BytesIO(b"abcdef"))
32 fp = BufferedStream(BytesIO(b"abcdef"))
43 fp = BufferedStream(BytesIO(b"abcdef"))
59 fp = BufferedStream(BytesIO(b"abcdef"))
166 return BytesIO(b"HTTP/1.1 200 Ok\r\n\r\nText")
  /external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph/
util.py 17 from StringIO import StringIO as BytesIO
21 from io import BytesIO, StringIO
84 fp = BytesIO(imp.get_magic() + b'\0\0\0\0' + marshal.dumps(co))
  /external/opencv3/3rdparty/jinja2/
_compat.py 31 from io import BytesIO, StringIO
60 from cStringIO import StringIO as BytesIO, StringIO
61 NativeStringIO = BytesIO
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
compat.py 51 from boto.vendored.six import BytesIO, StringIO
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/glacier/
test_utils.py 29 from boto.compat import BytesIO, six, StringIO
163 # Compute a hash from a file-like BytesIO object.
164 f = BytesIO(self._gen_data())
  /prebuilts/gdb/darwin-x86/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()
  /prebuilts/gdb/linux-x86/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()
  /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()
  /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()
  /external/fonttools/Lib/fontTools/misc/
py23.py 29 from io import BytesIO as StringIO
  /external/autotest/client/common_lib/cros/
avahi_utils.py 44 conf.readfp(io.BytesIO(existing_config))
  /external/chromium-trace/catapult/firefighter/base/
bigquery.py 62 media_buffer = io.BytesIO()

Completed in 751 milliseconds

1 2 3 4