Home
last modified time | relevance | path

Searched refs:read (Results 51 – 75 of 842) sorted by relevance

12345678910>>...34

/plugin/swiftmail/Swift/Cache/
H A DJointOutputStream.php53 public function read($size=null) function in Swift_Cache_JointOutputStream
55 $ret = $this->streams[$this->pointer]->read($size);
65 return $this->read($size);
/plugin/webdav/vendor/sabre/vobject/lib/Parser/XML/Element/
H A DKeyValue.php50 $reader->read();
57 $reader->read();
61 $reader->read();
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/XML/Element/
H A DKeyValue.php49 $reader->read();
59 $reader->read();
64 $reader->read();
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/
H A DAttribute.php37 $token = $this->read(Scanner\Token::IDENTIFIER);
39 $token = $this->read(
47 $token = $this->read(
65 $this->read(Scanner\Token::ATTRIBUTE_SELECTOR_END);
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/
H A DLimitStreamTest.php35 $this->assertEquals('oo', $body->read(100));
36 $this->assertEmpty($body->read(1));
79 $data = $this->body->read(100);
81 $this->assertFalse($this->body->read(1000));
84 $newData = $this->body->read(100);
103 $this->body->read(1000);
H A DAsyncReadStreamTest.php89 $this->assertEquals('foo', $a->read(10));
90 $this->assertEquals('', $a->read(10));
104 $this->assertEquals('foo', $a->read(3));
106 $this->assertEquals('bar.....', $a->read(8));
108 $this->assertEquals('..', $a->read(2));
130 $a->read(3);
135 $a->read(3);
H A DBufferStreamTest.php27 $this->assertEquals('foo', $b->read(10));
29 $this->assertEquals('', $b->read(10));
37 $this->assertEquals('foo', $b->read(3));
51 $this->assertEquals('abc', $b->read(10));
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Component/
H A DAvailableTest.php23 $document = Reader::read($vcal);
39 $document = Reader::read($vcal);
62 $document = Reader::read($vcal);
/plugin/davcal/vendor/sabre/xml/lib/Element/
H A DKeyValue.php111 $reader->read();
120 $reader->read();
125 $reader->read();
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dgson-2.7.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/plugin/webdav/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DComplex.php53 $reader->read();
72 $reader->read();
77 $reader->read();
/plugin/davcal/vendor/sabre/dav/lib/DAV/Xml/Property/
H A DComplex.php53 $reader->read();
72 $reader->read();
77 $reader->read();
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DIssue172Test.php37 $input = VObject\Reader::read($input);
84 $input = VObject\Reader::read($input);
132 $input = VObject\Reader::read($input);
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
H A DFreeBusyGeneratorTest.php185 Reader::read($blob),
203 Reader::read($blob),
226 Reader::read($blob),
244 Reader::read($blob),
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/
H A DFreeBusyGeneratorTest.php185 Reader::read($blob),
203 Reader::read($blob),
226 Reader::read($blob),
244 Reader::read($blob),
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DFreeBusyGeneratorTest.php185 Reader::read($blob),
203 Reader::read($blob),
226 Reader::read($blob),
244 Reader::read($blob),
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/
H A DPumpStream.php7 * Provides a read only stream that pumps data from a PHP callable.
10 * data requested to read to the callable. The callable can choose to ignore
13 * the read() function of the PumpStream. The provided callable MUST return
14 * false when there is no more data to read.
112 public function read($length) function in GuzzleHttp\\Stream\\PumpStream
114 $data = $this->buffer->read($length);
121 $data .= $this->buffer->read($remaining);
132 $result .= $this->read(1000000);
H A DLimitStream.php16 /** @var int Limit the number of bytes that can be read */
21 * @param int $limit Total number of bytes to allow to be read
72 * Allow for a bounded seek on the read limited stream
114 // If the stream cannot seek to the offset position, then read to it
119 $this->stream->read($offset - $current);
130 * Set the limit of bytes that the decorator allows to be read from the
133 * @param int $limit Number of bytes to allow to be read from the stream.
144 public function read($length) function in GuzzleHttp\\Stream\\LimitStream
147 return $this->stream->read($length);
156 return $this->stream->read(mi
[all...]
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/
H A DPumpStream.php121 public function read($length) function in GuzzleHttp\\Psr7\\PumpStream
123 $data = $this->buffer->read($length);
130 $data .= $this->buffer->read($remaining);
141 $result .= $this->read(1000000);
H A DLimitStream.php121 $this->stream->read($offset - $current);
140 public function read($length) function in GuzzleHttp\\Psr7\\LimitStream
143 return $this->stream->read($length);
152 return $this->stream->read(min($remaining, $length));
/plugin/findologicxmlexport/vendor/hoa/file/
H A DReadWrite.php134 public function read($length) function in Hoa\\File\\ReadWrite
155 return $this->read($length);
175 return (bool) $this->read(1);
186 return (int) $this->read($length);
197 return (float) $this->read($length);
/plugin/icalevents/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php43 $this->assertEquals([], VObject\Reader::read($return)->validate());
144 $this->assertEquals([], VObject\Reader::read($return)->validate());
170 $messages = VObject\Reader::read($return)->validate();
281 $this->assertEquals([], VObject\Reader::read($return)->validate());
321 $messages = VObject\Reader::read($return)->validate();
/plugin/davcard/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php43 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
144 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
170 $messages = VObject\Reader::read($return)->validate();
281 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
321 $messages = VObject\Reader::read($return)->validate();
/plugin/webdavclient/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php43 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
144 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
170 $messages = VObject\Reader::read($return)->validate();
281 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
321 $messages = VObject\Reader::read($return)->validate();
/plugin/davcal/vendor/sabre/vobject/tests/VObject/Splitter/
H A DICalendarTest.php43 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
144 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
170 $messages = VObject\Reader::read($return)->validate();
281 $this->assertEquals(array(), VObject\Reader::read($return)->validate());
321 $messages = VObject\Reader::read($return)->validate();

12345678910>>...34