HomeSort by relevance Sort by last modified time
    Searched full:seekable (Results 1 - 25 of 323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
multifile.py 24 If seekable is given as 0, the class code will not do the bookkeeping
27 seekable stream object.
41 seekable = 0 variable in class:MultiFile
43 def __init__(self, fp, seekable=1):
48 if seekable:
49 self.seekable = 1
105 if self.seekable:
129 if self.seekable:
137 if self.seekable:
150 if self.seekable:
    [all...]
chunk.py 74 self.seekable = False
76 self.seekable = True
99 If the file is not seekable, this will result in an error.
104 if not self.seekable:
152 if self.seekable:
  /external/python/cpython2/Lib/
multifile.py 24 If seekable is given as 0, the class code will not do the bookkeeping
27 seekable stream object.
41 seekable = 0 variable in class:MultiFile
43 def __init__(self, fp, seekable=1):
48 if seekable:
49 self.seekable = 1
105 if self.seekable:
129 if self.seekable:
137 if self.seekable:
150 if self.seekable
    [all...]
chunk.py 74 self.seekable = False
76 self.seekable = True
101 If the file is not seekable, this will result in an error.
106 if not self.seekable:
154 if self.seekable:
  /prebuilts/gdb/darwin-x86/lib/python2.7/
multifile.py 24 If seekable is given as 0, the class code will not do the bookkeeping
27 seekable stream object.
41 seekable = 0 variable in class:MultiFile
43 def __init__(self, fp, seekable=1):
48 if seekable:
49 self.seekable = 1
105 if self.seekable:
129 if self.seekable:
137 if self.seekable:
150 if self.seekable
    [all...]
chunk.py 74 self.seekable = False
76 self.seekable = True
99 If the file is not seekable, this will result in an error.
104 if not self.seekable:
152 if self.seekable:
  /prebuilts/gdb/linux-x86/lib/python2.7/
multifile.py 24 If seekable is given as 0, the class code will not do the bookkeeping
27 seekable stream object.
41 seekable = 0 variable in class:MultiFile
43 def __init__(self, fp, seekable=1):
48 if seekable:
49 self.seekable = 1
105 if self.seekable:
129 if self.seekable:
137 if self.seekable:
150 if self.seekable
    [all...]
chunk.py 74 self.seekable = False
76 self.seekable = True
99 If the file is not seekable, this will result in an error.
104 if not self.seekable:
152 if self.seekable:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 24 If seekable is given as 0, the class code will not do the bookkeeping
27 seekable stream object.
41 seekable = 0 variable in class:MultiFile
43 def __init__(self, fp, seekable=1):
48 if seekable:
49 self.seekable = 1
105 if self.seekable:
129 if self.seekable:
137 if self.seekable:
150 if self.seekable
    [all...]
chunk.py 74 self.seekable = False
76 self.seekable = True
99 If the file is not seekable, this will result in an error.
104 if not self.seekable:
152 if self.seekable:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 24 If seekable is given as 0, the class code will not do the bookkeeping
27 seekable stream object.
41 seekable = 0 variable in class:MultiFile
43 def __init__(self, fp, seekable=1):
48 if seekable:
49 self.seekable = 1
105 if self.seekable:
129 if self.seekable:
137 if self.seekable:
150 if self.seekable
    [all...]
chunk.py 74 self.seekable = False
76 self.seekable = True
99 If the file is not seekable, this will result in an error.
104 if not self.seekable:
152 if self.seekable:
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
SeekableFileInputStream.java 29 * Creates a new seekable input stream that reads from the specified file.
36 * Creates a new seekable input stream that reads from a file with
44 * Creates a new seekable input stream from an existing
  /external/python/cpython3/Lib/
chunk.py 74 self.seekable = False
76 self.seekable = True
101 If the file is not seekable, this will result in an error.
106 if not self.seekable:
154 if self.seekable:
_compression.py 28 if not self.seekable():
63 def seekable(self): member in class:DecompressReader
64 return self._fp.seekable()
  /prebuilts/go/darwin-x86/src/cmd/internal/bio/
buf.go 14 // Reader implements a seekable buffered io.Reader.
20 // Writer implements a seekable buffered io.Writer.
  /prebuilts/go/linux-x86/src/cmd/internal/bio/
buf.go 14 // Reader implements a seekable buffered io.Reader.
20 // Writer implements a seekable buffered io.Writer.
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvwriter.h 29 virtual bool Seekable() const;
mkvwriter.cc 86 bool MkvWriter::Seekable() const { return true; }
  /external/tremolo/Tremolo/
vorbisfile.c 371 positions. Only called by the seekable initialization (local
591 int link=(vf->seekable?vf->current_link:0);
607 if(vf->seekable && link>0)
660 /* This is different in the seekable and non-seekable cases.
662 In the seekable case, we already have all the header
666 In the non-seekable (streaming) case, we'll only be at a
675 if(vf->seekable){
739 previously read data (as we may be reading from a non-seekable
748 if(offsettest!=-1)vf->seekable=1
    [all...]
  /external/python/cpython3/Modules/_io/clinic/
fileio.c.h 124 "seekable($self, /)\n"
130 {"seekable", (PyCFunction)_io_FileIO_seekable, METH_NOARGS, _io_FileIO_seekable__doc__},
274 "Note that not all file objects are seekable.");
305 "Can raise OSError for non seekable files.");
  /frameworks/av/media/libnbaio/
LibsndfileSource.cpp 30 mLooping(loop && sfinfo.seekable),
  /frameworks/base/core/jni/android/graphics/
Utils.h 77 /** Check if the file descriptor is seekable.
  /external/robolectric/v1/lib/main/
sqlite-jdbc-3.7.2.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fileio.py 108 'seek', 'tell', 'truncate', 'write', 'seekable',
191 f.seekable()
241 self.assertEqual(f.seekable(), True)
247 self.assertEqual(f.seekable(), True)
253 self.assertEqual(f.seekable(), True)
271 # Somehow /dev/tty appears seekable on some BSDs
272 self.assertEqual(f.seekable(), False)

Completed in 829 milliseconds

1 2 3 4 5 6 7 8 91011>>