Home
last modified time | relevance | path

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

1234567

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
DLimitStream.php48 $tell = $this->stream->tell();
49 if ($tell === false) {
53 return $tell >= $this->offset + $this->limit;
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();
DCachingStream.php49 $byte = $offset + $this->tell();
102 $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell();
DStreamDecoratorTrait.php98 public function tell() function
100 return $this->stream->tell();
DStreamInterface.php67 public function tell(); function
DNullStream.php55 public function tell() function in GuzzleHttp\\Stream\\NullStream
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
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());
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());
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());
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());
DCachingStreamTest.php71 $this->assertEquals(4, $this->body->tell());
73 $this->assertEquals(2, $this->body->tell());
75 $this->assertEquals(4, $this->body->tell());
DBufferStreamTest.php40 $this->assertFalse($b->tell());
48 $this->assertEquals(0, $b->tell());
DPumpStreamTest.php30 $this->assertEquals(1, $p->tell());
32 $this->assertEquals(6, $p->tell());
DFnStreamTest.php63 $this->assertEquals($b->tell(), 3);
64 $this->assertEquals($a->tell(), 3);
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
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();
DCachingStream.php58 $byte = $offset + $this->tell();
119 $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell();
145 return $this->tell();
DStreamDecoratorTrait.php101 public function tell() function
103 return $this->stream->tell();
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DLimitStream.php54 return $this->stream->tell() >= $this->offset + $this->limit;
98 public function tell(): int 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();
DCachingStream.php63 $byte = $offset + $this->tell();
124 $overflow = (strlen($string) + $this->tell()) - $this->remoteStream->tell();
151 return $this->tell();
DStreamDecoratorTrait.php107 public function tell(): int function
109 return $this->stream->tell();
/plugin/zip/pear/File/Archive/Reader/
DRelay.php88 function tell() { return $this->source->tell(); } function in File_Archive_Reader_Relay
DFile.php247 function tell() function in File_Archive_Reader_File
276 $pos = $this->tell();
/plugin/findologicxmlexport/vendor/hoa/stream/IStream/
DPointable.php93 public function tell(); function
/plugin/authgooglesheets/vendor/psr/http-message/src/
DStreamInterface.php59 public function tell(); function
/plugin/aichat/lang/en/
Dnoanswer.prompt1 Given the user's question, tell them that you can't answer it because you couldn't find any matchin…
/plugin/matrixnotifierwas/vendor/psr/http-message/src/
DStreamInterface.php59 public function tell(): int; function

1234567