Home
last modified time | relevance | path

Searched refs:eof (Results 1 – 25 of 144) sorted by relevance

123456

/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
DUtils.php61 while (!$stream->eof()) {
72 while (!$stream->eof() && $len < $maxLen) {
99 while (!$source->eof()) {
108 while (!$source->eof()) {
143 while (!$stream->eof()) {
168 while (!$stream->eof()) {
DAppendStream.php128 public function eof() function in GuzzleHttp\\Stream\\AppendStream
132 $this->streams[$this->current]->eof());
161 while ($this->pos < $offset && !$this->eof()) {
181 if ($this->streams[$this->current]->eof()) {
DCachingStream.php110 public function eof() function in GuzzleHttp\\Stream\\CachingStream
112 return $this->stream->eof() && $this->remoteStream->eof();
DStreamDecoratorTrait.php93 public function eof() function
95 return $this->stream->eof();
DPumpStream.php82 public function eof() function in GuzzleHttp\\Stream\\PumpStream
131 while (!$this->eof()) {
DLimitStream.php36 public function eof() function in GuzzleHttp\\Stream\\LimitStream
39 if ($this->stream->eof()) {
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
DCachingStream.php74 while ($diff > 0 && !$this->remoteStream->eof()) {
127 public function eof() function in GuzzleHttp\\Psr7\\CachingStream
129 return $this->stream->eof() && $this->remoteStream->eof();
DAppendStream.php136 public function eof() function in GuzzleHttp\\Psr7\\AppendStream
140 $this->streams[$this->current]->eof());
174 while ($this->pos < $offset && !$this->eof()) {
197 if ($progressToNext || $this->streams[$this->current]->eof()) {
DUtils.php52 while (!$source->eof()) {
59 while ($remaining > 0 && !$source->eof()) {
88 while (!$stream->eof()) {
100 while (!$stream->eof() && $len < $maxLen) {
136 while (!$stream->eof()) {
252 while (!$stream->eof()) {
DStreamDecoratorTrait.php96 public function eof() function
98 return $this->stream->eof();
DLimitStream.php39 public function eof() function in GuzzleHttp\\Psr7\\LimitStream
42 if ($this->stream->eof()) {
DPumpStream.php86 public function eof() function in GuzzleHttp\\Psr7\\PumpStream
140 while (!$this->eof()) {
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
DLimitStreamTest.php32 $this->assertTrue($body->eof());
34 $this->assertFalse($body->eof());
37 $this->assertTrue($body->eof());
102 $this->assertFalse($this->body->eof());
104 $this->assertTrue($this->body->eof());
DStreamTest.php30 $this->assertFalse($stream->eof());
68 $this->assertFalse($stream->eof());
70 $this->assertTrue($stream->eof());
145 $this->assertTrue($stream->eof());
234 $this->assertFalse($p->eof());
238 $this->assertFalse($p->eof());
240 $this->assertTrue($p->eof());
DBufferStreamTest.php26 $this->assertFalse($b->eof());
28 $this->assertTrue($b->eof());
49 $this->assertTrue($b->eof());
DNullStreamTest.php27 $this->assertTrue($b->eof());
29 $this->assertTrue($b->eof());
DAppendStreamTest.php107 $this->assertFalse($a->eof());
113 $this->assertTrue($a->eof());
152 $this->assertFalse($a->eof());
DFnStreamTest.php66 $this->assertEquals($b->eof(), true);
67 $this->assertEquals($a->eof(), true);
/plugin/matrixnotifierwas/vendor/guzzlehttp/psr7/src/
DCachingStream.php79 while ($diff > 0 && !$this->remoteStream->eof()) {
132 public function eof(): bool function in GuzzleHttp\\Psr7\\CachingStream
134 return $this->stream->eof() && $this->remoteStream->eof();
DAppendStream.php141 public function eof(): bool function in GuzzleHttp\\Psr7\\AppendStream
145 && $this->streams[$this->current]->eof());
177 while ($this->pos < $offset && !$this->eof()) {
197 if ($progressToNext || $this->streams[$this->current]->eof()) {
DUtils.php52 while (!$source->eof()) {
59 while ($remaining > 0 && !$source->eof()) {
86 while (!$stream->eof()) {
98 while (!$stream->eof() && $len < $maxLen) {
131 while (!$stream->eof()) {
239 while (!$stream->eof()) {
DStreamDecoratorTrait.php102 public function eof(): bool function
104 return $this->stream->eof();
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
DStream.php96 private $eof; variable in phpseclib3\\Net\\SFTP\\Stream
271 $this->eof = false;
329 $this->eof = true;
368 $this->eof = false;
398 return $this->eof;
425 $this->eof = false;
730 $this->eof = false;
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dstate.js11 this.tok = this.last = {type: tt.eof, start: 0, end: 0}
94 return this.tok.type === tt.eof || this.tok.type === tt.braceR ||
135 if (this.tok.type === closeTok || this.tok.type === tt.eof) return true
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dstate.js11 this.tok = this.last = {type: tt.eof, start: 0, end: 0}
95 return this.tok.type === tt.eof || this.tok.type === tt.braceR ||
136 if (this.tok.type === closeTok || this.tok.type === tt.eof) return true

123456