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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multibytecodec_support.py 163 for sizehint in [None] + range(1, 33) + \
169 if sizehint is not None:
170 data = istream.read(sizehint)
183 for sizehint in [None, -1] + range(1, 33) + \
189 data = istream.read(sizehint)
221 for sizehint in [None, -1] + range(1, 33) + \
227 data = func(sizehint)
241 for sizehint in [None] + range(1, 33) + \
247 if sizehint is not None:
248 data = func(sizehint)
    [all...]
test_codecs.py 695 for sizehint in [None] + range(1, 11) + \
700 if sizehint is not None:
701 data = istream.read(sizehint)
717 for sizehint in [None] + range(1, 11) + \
722 if sizehint is not None:
723 data = istream.read(sizehint)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multibytecodec_support.py 163 for sizehint in [None] + range(1, 33) + \
169 if sizehint is not None:
170 data = istream.read(sizehint)
183 for sizehint in [None, -1] + range(1, 33) + \
189 data = istream.read(sizehint)
221 for sizehint in [None, -1] + range(1, 33) + \
227 data = func(sizehint)
241 for sizehint in [None] + range(1, 33) + \
247 if sizehint is not None:
248 data = func(sizehint)
    [all...]
test_codecs.py 695 for sizehint in [None] + range(1, 11) + \
700 if sizehint is not None:
701 data = istream.read(sizehint)
717 for sizehint in [None] + range(1, 11) + \
722 if sizehint is not None:
723 data = istream.read(sizehint)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
StringIO.py 168 def readlines(self, sizehint = 0):
172 If the optional sizehint argument is present, instead of reading up
173 to EOF, whole lines totalling approximately sizehint bytes (or more
182 if 0 < sizehint <= total:
codecs.py 576 def readlines(self, sizehint=None, keepends=True):
584 sizehint, if given, is ignored since there is no efficient
677 def readlines(self, sizehint=None):
679 return self.reader.readlines(sizehint)
794 def readlines(self, sizehint=None):
    [all...]
socket.py 511 def readlines(self, sizehint=0):
520 if sizehint and total >= sizehint:
mailbox.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
StringIO.py 168 def readlines(self, sizehint = 0):
172 If the optional sizehint argument is present, instead of reading up
173 to EOF, whole lines totalling approximately sizehint bytes (or more
182 if 0 < sizehint <= total:
codecs.py 576 def readlines(self, sizehint=None, keepends=True):
584 sizehint, if given, is ignored since there is no efficient
677 def readlines(self, sizehint=None):
679 return self.reader.readlines(sizehint)
794 def readlines(self, sizehint=None):
    [all...]
socket.py 511 def readlines(self, sizehint=0):
520 if sizehint and total >= sizehint:
mailbox.py     [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
httpserver.py 98 def _ContinueFile_readlines(self, sizehint=0):
100 return self._ContinueFile_rfile.readlines(sizehint)
    [all...]
  /external/lldb/test/pexpect-2.4/
pexpect.py     [all...]

Completed in 9348 milliseconds