HomeSort by relevance Sort by last modified time
    Searched defs:seekable (Results 1 - 17 of 17) sorted by null

  /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...]
gzip.py 412 def seekable(self): member in class:GzipFile
_pyio.py 362 def seekable(self): member in class:IOBase
371 """Internal: raise an IOError if file is not seekable
373 if not self.seekable():
374 raise IOError("File or stream is not seekable."
742 def seekable(self): member in class:_BufferedIOMixin
743 return self.raw.seekable()
897 def seekable(self): member in class:BytesIO
1556 def seekable(self): member in class:TextIOWrapper
    [all...]
  /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...]
gzip.py 412 def seekable(self): member in class:GzipFile
_pyio.py 362 def seekable(self): member in class:IOBase
371 """Internal: raise an IOError if file is not seekable
373 if not self.seekable():
374 raise IOError("File or stream is not seekable."
742 def seekable(self): member in class:_BufferedIOMixin
743 return self.raw.seekable()
897 def seekable(self): member in class:BytesIO
1556 def seekable(self): member in class:TextIOWrapper
    [all...]
  /external/chromium_org/content/child/npapi/
plugin_stream.h 66 // setter/getter for the seekable attribute on the stream.
67 bool seekable() const { return seekable_stream_; } function in class:content::PluginStream
69 void set_seekable(bool seekable) { seekable_stream_ = seekable; }
  /external/tremolo/Tremolo/
ivorbisfile.h 68 int seekable; member in struct:OggVorbis_File
73 /* If the FILE handle isn't seekable (eg, a pipe), only the current
  /external/libvorbis/include/vorbis/
vorbisfile.h 113 int seekable; member in struct:OggVorbis_File
118 /* If the FILE handle isn't seekable (eg, a pipe), only the current
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 43 bool seekable);
57 // will be seekable, otherwise the single stream will be seekable.
66 bool seekable)
69 mSeekable(seekable) {
127 bool seekable = true; local
136 seekable = false;
140 return new MPEG2TSSource(this, mSourceImpls.editItemAt(index), seekable);
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.cpp 102 PassRefPtrWillBeRawPtr<TimeRanges> MediaController::seekable() const function in class:blink::MediaController
107 // The seekable attribute must return a new static normalized TimeRanges object that represents
111 RefPtrWillBeRawPtr<TimeRanges> seekableRanges = (*it)->seekable();
113 seekableRanges->intersectWith((*it)->seekable().get());
HTMLMediaElement.cpp 3292 PassRefPtrWillBeRawPtr<TimeRanges> HTMLMediaElement::seekable() const function in class:blink::HTMLMediaElement
    [all...]
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
storage_api.py 524 def seekable(self): member in class:ReadBuffer
858 def seekable(self): member in class:StreamingBuffer
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/
serialutil.py 209 raise IOError("file is not seekable")
212 raise IOError("file is not seekable")
215 raise IOError("file is not seekable")
529 def seekable(self): return False member in class:SerialBase
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_io.py 85 def seekable(self): member in class:MockRawIOWithoutRead
222 def seekable(self): member in class:MockNonBlockWriterIO
349 self.assertEqual(f.seekable(), True)
354 self.assertEqual(f.seekable(), True)
361 self.assertEqual(f.seekable(), True)
366 self.assertEqual(f.seekable(), True)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_io.py 85 def seekable(self): member in class:MockRawIOWithoutRead
222 def seekable(self): member in class:MockNonBlockWriterIO
349 self.assertEqual(f.seekable(), True)
354 self.assertEqual(f.seekable(), True)
361 self.assertEqual(f.seekable(), True)
366 self.assertEqual(f.seekable(), True)
    [all...]
  /external/robolectric/lib/main/
sqlite-jdbc-3.7.2.jar 

Completed in 694 milliseconds