Home
last modified time | relevance | path

Searched refs:seek (Results 26 – 50 of 180) sorted by relevance

12345678

/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DStream.php81 $this->seek(0);
193 $this->seek(0);
196 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Psr7\\Stream
H A DPumpStream.php98 $this->seek(0);
101 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Psr7\\PumpStream
H A DNoSeekStream.php16 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Psr7\\NoSeekStream
H A DAppendStream.php145 $this->seek(0);
153 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Psr7\\AppendStream
/plugin/jplayer/vendor/happyworm/jplayer/src/actionscript/happyworm/jPlayer/
H A DJplayerMp4.as109 play(myStatus.pausePosition); // Must pass time or the seek time is never set.
114 // Illegal seek time
159 …// "NetStream.Seek.Notify" event code is not very useful. It occurs after every seek(t) command is…
233 myStream.seek(0);
244 if(!isNaN(time)) { // Avoid using seek() when it is already correct.
245 myStream.seek(myStatus.pausePosition/1000); // Since time is in ms and seek() takes seconds
299 myStream.seek(0);
305 if(myStatus.metaDataReady) { // Otherwise seek(0) will stop the metadata loading.
306 myStream.seek(myStatus.pausePosition/1000);
384 …// This event occurs when jumping to the start of static files! ie., seek(0) will cause this event…
[all …]
H A DJplayerRtmp.as200 play(myStatus.pausePosition);// Must pass time or the seek time is never set.
209 // Illegal seek time
383 … play();// Not always sending pausePosition avoids the extra seek(0) for a normal play() command.
711 myStream.seek(0);
723 if(!isNaN(time)) { // Avoid using seek() when it is already correct.
725 myStream.seek(myStatus.pausePosition/1000); // Since time is in ms and seek() takes seconds
808 myStream.seek(0);
820 {// Otherwise seek(0) will stop the metadata loading.
822 myStream.seek(myStatus.pausePosition / 1000);
949 …// This event occurs when jumping to the start of static files! ie., seek(0) will cause this event…
[all …]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DUtilsTest.php18 $s->seek(0);
43 $s1->seek(0);
138 $s->seek(4);
H A DStreamTest.php58 $stream->seek(0);
114 $stream->seek(1);
143 $this->assertFalse($stream->seek(10));
151 $stream->seek(0);
H A DNoSeekStreamTest.php17 ->setMethods(['isSeekable', 'seek'])
19 $s->expects($this->never())->method('seek');
23 $this->assertFalse($wrapped->seek(2));
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DCachingStream.php44 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Stream\\CachingStream
59 sprintf('Cannot seek to byte %d when the buffered stream only'
64 return $this->stream->seek($byte);
H A DUtils.php138 if ($pos > 0 && !$stream->seek(0)) {
148 $stream->seek($pos);
H A DNoSeekStream.php11 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Stream\\NoSeekStream
H A DStreamInterface.php10 * Attempts to seek to the beginning of the stream and reads all data into
88 * based on the seek offset. Valid values are identical
97 public function seek($offset, $whence = SEEK_SET); function
H A DNullStream.php60 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Stream\\NullStream
H A DStream.php133 $this->seek(0);
227 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Stream\\Stream
/plugin/zip/pear/File/Archive/Reader/
H A DConcat.php181 function makeWriter($fileModif = true, $seek = 0) argument
183 return $this->source->makeWriter($fileModif, $seek);
H A DFile.php269 function makeWriterRemoveBlocks($blocks, $seek = 0) argument
279 $writer->openFileRemoveBlock($file, $pos + $seek, $blocks);
H A DGzip.php215 function makeWriterRemoveBlocks($blocks, $seek = 0) argument
225 $expectedPos = $this->filePos + $seek;
H A DBzip2.php193 function makeWriterRemoveBlocks($blocks, $seek = 0) argument
203 $expectedPos = $this->filePos + $seek;
H A DCache.php252 function makeWriterRemoveBlocks($blocks, $seek = 0) argument
254 $writer = $this->source->makeWriterRemoveBlocks($blocks, $seek);
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DPointable.php86 public function seek($offset, $whence = self::SEEK_SET); function
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DDirectory.php106 $iterator->seek(3),
114 $iterator->seek(2),
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DIntStream.php89 * A mark provides a guarantee that {@see IntStream::seek seek()} operations
112 * {@see IntStream::seek(index)} as part of an operation to safely work within a
124 * $stream->seek($index);
180 * @param int $index The absolute index to seek to.
182 public function seek(int $index) : void; function
/plugin/zip/pear/File/Archive/
H A DReader.php408 * @param int $seek relative pos of the block
410 function makeWriterRemoveBlocks($blocks, $seek = 0) argument
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DOtl.php1573 $this->seek($subtable_offset);
1589 $this->seek($LigSet);
1598 $this->seek($LigatureOffset[$g]);
1638 $this->seek($subtable_offset);
1656 $this->seek($CoverageOffset);
1691 $this->seek($Sequences);
1734 $this->seek($AlternateSets);
1769 $this->seek($LigSet);
1778 $this->seek($LigatureOffset[$g]);
1841 $this->seek(
5864 private function seek($pos) global() function in Mpdf\\Otl
[all...]

12345678