HomeSort by relevance Sort by last modified time
    Searched refs:BytesIO (Results 1 - 25 of 39) 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,
  /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,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/tests/
test_p2g.py 30 bytesIO = io.BytesIO(s)
31 G = read_p2g(bytesIO)
47 fh=io.BytesIO()
57 fh=io.BytesIO()
test_gexf.py 35 io.BytesIO(self.simple_directed_data.encode('UTF-8'))
115 self.attribute_fh = io.BytesIO(self.attribute_data.encode('UTF-8'))
135 self.simple_undirected_fh = io.BytesIO(self.simple_undirected_data.encode('UTF-8'))
149 fh=io.BytesIO()
192 fh = io.BytesIO(s.encode('UTF-8'))
209 fh = io.BytesIO(s.encode('UTF-8'))
231 fh = io.BytesIO(s.encode('UTF-8'))
248 fh = io.BytesIO(s.encode('UTF-8'))
260 fh = io.BytesIO()
273 fh = io.BytesIO()
    [all...]
test_edgelist.py 38 bytesIO = io.BytesIO(s)
39 G = nx.read_edgelist(bytesIO,nodetype=int)
49 bytesIO = io.BytesIO(s)
50 G = nx.read_edgelist(bytesIO,nodetype=int,data=False)
53 bytesIO = io.BytesIO(s)
54 G = nx.read_weighted_edgelist(bytesIO,nodetype=int)
64 bytesIO = io.BytesIO(s
    [all...]
test_graphml.py 63 io.BytesIO(self.simple_directed_data.encode('UTF-8'))
122 self.attribute_fh = io.BytesIO(self.attribute_data.encode('UTF-8'))
145 self.simple_undirected_fh = io.BytesIO(self.simple_undirected_data.encode('UTF-8'))
165 fh=io.BytesIO()
219 fh = io.BytesIO(s.encode('UTF-8'))
235 fh = io.BytesIO(s.encode('UTF-8'))
263 fh = io.BytesIO(s.encode('UTF-8'))
293 fh = io.BytesIO(s.encode('UTF-8'))
306 fh = io.BytesIO()
377 fh = io.BytesIO(data.encode('UTF-8')
    [all...]
test_gml.py 110 fh = io.BytesIO(data.encode('UTF-8'))
test_adjlist.py 33 bytesIO = io.BytesIO(s)
34 G = nx.read_multiline_adjlist(bytesIO)
169 fh=io.BytesIO()
277 fh=io.BytesIO()
  /external/chromium-trace/trace-viewer/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),
  /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
  /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
  /external/fonttools/Lib/fontTools/misc/
py23.py 29 from io import BytesIO as StringIO
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
gzipper.py 45 self.buffer = six.BytesIO()
wsgilib.py 287 errors = six.BytesIO()
299 'wsgi.input': six.BytesIO(),
321 basic_environ['wsgi.input'] = six.BytesIO(istream)
request.py 178 input = six.BytesIO(b'')
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
request.py 264 return io.BytesIO()
714 self.body_file_raw = io.BytesIO()
717 self.body_file_raw = io.BytesIO(value)
930 That means that, the content is copied into a BytesIO or temporary
937 The choice to copy to BytesIO is made from
951 This copies the body in-place, either into a BytesIO object
    [all...]

Completed in 668 milliseconds

1 2