Home
last modified time | relevance | path

Searched refs:tell (Results 1 – 25 of 143) sorted by relevance

123456

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DLimitStream.php48 $tell = $this->stream->tell();
49 if ($tell === false) {
53 return $tell >= $this->offset + $this->limit;
93 * Give a relative tell()
96 public function tell() function in GuzzleHttp\\Stream\\LimitStream
98 return $this->stream->tell() - $this->offset;
111 $current = $this->stream->tell();
152 $remaining = ($this->offset + $this->limit) - $this->stream->tell();
H A DCachingStream.php49 $byte = $offset + $this->tell();
102 $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell();
H A DStreamDecoratorTrait.php98 public function tell() function
100 return $this->stream->tell();
H A DStreamInterface.php67 public function tell(); function
H A DNullStream.php55 public function tell() function in GuzzleHttp\\Stream\\NullStream
H A DGuzzleStreamWrapper.php80 return $this->stream->tell();
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DLimitStreamTest.php56 $this->assertEquals(0, $this->body->tell());
57 $this->assertEquals(3, $this->decorated->tell());
63 $this->assertEquals(10, $this->body->tell());
64 $this->assertEquals(13, $this->decorated->tell());
66 $this->assertEquals(0, $this->body->tell());
67 $this->assertEquals(3, $this->decorated->tell());
69 $this->assertEquals(0, $this->body->tell());
70 $this->assertEquals(3, $this->decorated->tell());
72 $this->assertEquals(5, $this->body->tell());
73 $this->assertEquals(8, $this->decorated->tell());
[all...]
H A DStreamDecoratorTraitTest.php76 $this->assertEquals(1, $this->a->tell());
77 $this->assertEquals(1, $this->b->tell());
79 $this->assertEquals(0, $this->a->tell());
80 $this->assertEquals(0, $this->b->tell());
82 $this->assertEquals(3, $this->a->tell());
83 $this->assertEquals(3, $this->b->tell());
H A DStreamTest.php111 $this->assertEquals(0, $stream->tell());
113 $this->assertEquals(3, $stream->tell());
115 $this->assertEquals(1, $stream->tell());
116 $this->assertSame(ftell($handle), $stream->tell());
125 $this->assertEquals(10, $stream->tell());
144 $this->assertFalse($stream->tell());
241 $this->assertEquals(9, $p->tell());
H A DAppendStreamTest.php59 $this->assertEquals(3, $a->tell());
62 $this->assertEquals(6, $a->tell());
108 $this->assertSame(0, $a->tell());
114 $this->assertSame(9, $a->tell());
H A DCachingStreamTest.php71 $this->assertEquals(4, $this->body->tell());
73 $this->assertEquals(2, $this->body->tell());
75 $this->assertEquals(4, $this->body->tell());
H A DBufferStreamTest.php40 $this->assertFalse($b->tell());
48 $this->assertEquals(0, $b->tell());
H A DPumpStreamTest.php30 $this->assertEquals(1, $p->tell());
32 $this->assertEquals(6, $p->tell());
H A DFnStreamTest.php63 $this->assertEquals($b->tell(), 3);
64 $this->assertEquals($a->tell(), 3);
H A DNullStreamTest.php20 $this->assertEquals(0, $b->tell());
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DLimitStream.php51 return $this->stream->tell() >= $this->offset + $this->limit;
98 public function tell() function in GuzzleHttp\\Psr7\\LimitStream
100 return $this->stream->tell() - $this->offset;
112 $current = $this->stream->tell();
148 $remaining = ($this->offset + $this->limit) - $this->stream->tell();
H A DCachingStream.php58 $byte = $offset + $this->tell();
119 $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell();
145 return $this->tell();
H A DStreamDecoratorTrait.php101 public function tell() function
103 return $this->stream->tell();
/plugin/zip/pear/File/Archive/Reader/
H A DRelay.php88 function tell() { return $this->source->tell(); } function in File_Archive_Reader_Relay
H A DFile.php247 function tell() function in File_Archive_Reader_File
276 $pos = $this->tell();
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
H A DPointable.php93 public function tell(); function
/plugin/authgooglesheets/vendor/psr/http-message/src/
H A DStreamInterface.php59 public function tell(); function
/plugin/aichat/lang/en/
H A Dprompt_noanswer.txt
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DCSS.ForbiddenProperties.txt
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsErrorTests.yml19 # This is actually valid YAML now. Someone should tell showell.

123456