Home
last modified time | relevance | path

Searched refs:eof (Results 1 – 25 of 86) sorted by last modified time

1234

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DLexer.php348 $eof = $this->factory->createEx(
359 $this->emitToken($eof);
361 return $eof;
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/
H A DCHANGELOG.rst26 ``eof()`` method when the stream is consumed.
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A 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()) {
H A DCachingStream.php110 public function eof() function in GuzzleHttp\\Stream\\CachingStream
112 return $this->stream->eof() && $this->remoteStream->eof();
H A DStreamInterface.php74 public function eof(); function
H A 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()) {
H A DNullStream.php50 public function eof() function in GuzzleHttp\\Stream\\NullStream
H A DPumpStream.php82 public function eof() function in GuzzleHttp\\Stream\\PumpStream
131 while (!$this->eof()) {
H A DStream.php210 public function eof() function in GuzzleHttp\\Stream\\Stream
H A DStreamDecoratorTrait.php93 public function eof() function
95 return $this->stream->eof();
H A DBufferStream.php86 public function eof() function in GuzzleHttp\\Stream\\BufferStream
H A DFnStream.php17 'getSize', 'tell', 'eof', 'isSeekable', 'seek', 'isWritable', 'write',
103 public function eof() function in GuzzleHttp\\Stream\\FnStream
H A DGuzzleStreamWrapper.php85 return $this->stream->eof();
H A DLimitStream.php36 public function eof() function in GuzzleHttp\\Stream\\LimitStream
39 if ($this->stream->eof()) {
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DAppendStreamTest.php107 $this->assertFalse($a->eof());
113 $this->assertTrue($a->eof());
149 ->method('eof')
152 $this->assertFalse($a->eof());
H A DLazyOpenStreamTest.php42 $this->assertTrue($l->eof());
H A 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());
H A DPumpStreamTest.php68 $this->assertTrue($p->eof());
H A 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());
H A DBufferStreamTest.php26 $this->assertFalse($b->eof());
28 $this->assertTrue($b->eof());
49 $this->assertTrue($b->eof());
H A DFnStreamTest.php66 $this->assertEquals($b->eof(), true);
67 $this->assertEquals($a->eof(), true);
H A DNullStreamTest.php27 $this->assertTrue($b->eof());
29 $this->assertTrue($b->eof());
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php245 $eof = feof($this->input);
249 if ($eof || (feof($this->input) && $rawLine===false)) {
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/
H A DUPGRADING.md651 - `feof` has been renamed to `eof`.
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DBufferStream.php89 public function eof() function in GuzzleHttp\\Psr7\\BufferStream

1234