Home
last modified time | relevance | path

Searched refs:seek (Results 1 – 25 of 180) sorted by relevance

12345678

/plugin/zip/pear/File/Archive/Reader/
H A DTar.php243 $seek = null;
247 $blocks[] = $seek; //Remove this file
253 if ($seek === null) {
254 $seek = $size;
259 $seek += $size;
262 $seek += $size;
266 if ($seek !== null) {
267 $seek += $size;
272 if ($seek === null) {
273 $seek = $this->seekToEnd;
[all …]
H A DAr.php276 $seek = null;
280 $blocks[] = $seek; //Remove this file
286 if ($seek === null) {
287 $seek = $size;
292 $seek += $size;
295 $seek += $size;
299 if ($seek !== null) {
300 $seek += $size;
305 if ($seek === null) {
306 $seek = 0;
[all …]
H A DZip.php288 $seek = null;
292 $blocks[] = $seek; //Remove this file
300 if ($seek === null) {
301 $seek = $size;
306 $seek += $size;
309 $seek += $size;
313 if ($seek !== null) {
314 $seek += $size;
323 if ($seek === null) {
324 $seek = 4;
[all …]
H A DDirectory.php182 function makeWriterRemoveBlocks($blocks, $seek = 0) argument
191 $writer = $lastSource->makeWriterRemoveBlocks($blocks, $seek);
211 $writer = $this->source->makeAppendWriter($seek);
H A DMemory.php203 function makeWriterRemoveBlocks($blocks, $seek = 0) argument
206 $data = substr($this->memory, 0, $this->offset + $seek);
207 $this->memory = substr($this->memory, $this->offset + $seek);
H A DRelay.php124 function makeWriterRemoveBlocks($blocks, $seek = 0) argument
126 $writer = $this->source->makeWriterRemoveBlocks($blocks, $seek);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DCachingStreamTest.php44 $this->expectErrorMessage('Cannot seek to byte 10');
45 $this->body->seek(10);
50 $this->assertFalse($this->body->seek(2, SEEK_END));
60 ->method('seek')
63 $d->seek(0);
69 $this->body->seek(0);
72 $this->body->seek(2);
74 $this->body->seek(2, SEEK_CUR);
83 $this->body->seek(0);
112 $body->seek(
[all...]
H A DLimitStreamTest.php33 $body->seek(0);
62 $this->assertEquals(true, $this->body->seek(100));
65 $this->assertEquals(true, $this->body->seek(0));
68 $this->assertEquals(false, $this->body->seek(-10));
71 $this->assertEquals(true, $this->body->seek(5));
74 $this->assertEquals(false, $this->body->seek(1000, SEEK_END));
92 $this->expectExceptionMessage('Could not seek the stream to position 2');
H A DFnStreamTest.php17 $this->expectExceptionMessage('seek() is not implemented in the FnStream');
18 (new FnStream([]))->seek(1);
68 $b->seek(0);
70 $b->seek(0);
73 $b->seek(0, SEEK_END);
H A DStreamDecoratorTraitTest.php75 $this->assertTrue($this->b->seek(1));
78 $this->assertTrue($this->b->seek(0));
81 $this->assertTrue($this->b->seek(0, SEEK_END));
90 $this->b->seek(1);
120 $this->b->seek(0, SEEK_END);
H A DAppendStreamTest.php29 $this->assertFalse($a->seek(100, SEEK_CUR));
44 ->method('seek')
47 $this->assertFalse($a->seek(10));
58 $this->assertTrue($a->seek(3));
61 $a->seek(6);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DStreamDecoratorTrait.php44 $this->seek(0);
123 $this->seek(0);
126 public function seek($offset, $whence = SEEK_SET) function
128 $this->stream->seek($offset, $whence);
H A DLimitStream.php73 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Psr7\\LimitStream
91 $this->stream->seek($offset);
117 $this->stream->seek($offset);
H A DCachingStream.php50 $this->seek(0);
53 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Psr7\\CachingStream
80 $this->stream->seek($byte);
H A DBufferStream.php81 $this->seek(0);
84 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Psr7\\BufferStream
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DOtlDump.php219 $this->seek($this->TTCFonts[$TTCfontID]['offset']);
314 function seek($pos) function in Mpdf\\OtlDump
496 $this->seek($string_data_offset + $offset);
508 $this->seek($opos);
514 $this->seek($opos);
780 $this->seek($save_pos);
804 $this->seek($unicode_cmap_offset + 4);
956 $this->seek($gdef_offset + $GlyphClassDef_offset);
1039 $this->seek($gdef_offset+$AttachList_offset );
1070 $this->seek(
[all...]
H A DTTFontFile.php288 $this->seek($this->TTCFonts[$TTCfontID]['offset']);
395 function seek($pos) function in Mpdf\\TTFontFile
584 $this->seek($this->TTCFonts[$TTCfontID]['offset']);
612 $this->seek($save_pos);
704 $this->seek($string_data_offset + $offset);
716 $this->seek($opos);
721 $this->seek($opos);
1039 $this->seek($save_pos);
1061 $this->seek($unicode_cmap_offset + 4);
1253 $this->seek(
[all...]
H A DTTFontFileAnalysis.php46 $this->seek($this->TTCFonts[$TTCfontID]['offset']);
67 $this->seek($save_pos );
95 $this->seek($opos);
99 $this->seek($string_data_offset + $x[$i]['offset'] );
112 $this->seek($opos);
142 $this->seek($string_data_offset + $offset);
154 $this->seek($opos);
159 $this->seek($opos);
274 $this->seek($save_pos);
292 $this->seek(
[all...]
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DStreamDecoratorTrait.php37 $this->seek(0);
118 public function seek($offset, $whence = SEEK_SET) function
120 return $this->stream->seek($offset, $whence);
H A DLimitStream.php23 * @param int|null $offset Position to seek to before reading (only
72 * Allow for a bounded seek on the read limited stream
75 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Stream\\LimitStream
89 return $this->stream->seek($offset);
104 * @param int $offset Offset to seek to and begin byte limiting from
114 // If the stream cannot seek to the offset position, then read to it
115 if (!$this->stream->seek($offset)) {
H A DAppendStream.php35 $this->seek(0);
136 * Attempts to seek to the given position. Only supports SEEK_SET.
140 public function seek($offset, $whence = SEEK_SET) function in GuzzleHttp\\Stream\\AppendStream
151 if (!$stream->seek(0)) {
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DStreamInterface.php87 public function seek($offset, $whence = SEEK_SET); function
95 * @see seek()
/plugin/xfortune/
H A Dhelper.php107 $seek = ftell($fd);
110 if($seek == 0) {
138 } elseif($seek == $dim - 2) {
/plugin/zip/pear/File/Archive/Writer/
H A DMemory.php62 function File_Archive_Writer_Memory(&$data, $seek = 0) argument
65 $this->data = substr($data, 0, $seek);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DLexerActionExecutor.php87 * {@see IntStream::seek()} on the input {@see CharStream} to set the input
146 * This method calls {@see IntStream::seek()} to set the position of the
160 * passed to {@see IntStream::seek()} to set
173 $input->seek($startIndex + $offset);
177 $input->seek($stopIndex);
185 $input->seek($stopIndex);

12345678