/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/tests/ |
H A D | StreamTest.php | 31 $stream->close(); 38 unset($stream); 49 $stream->close(); 58 $stream->seek(0); 69 $stream->read(4); 71 $stream->close(); 81 $stream->close(); 92 $stream->close(); 104 $stream->close(); 114 $stream->seek(1); [all …]
|
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/ |
H A D | LexerTest.php | 37 $stream->expect(Token::BLOCK_START_TYPE); 48 $stream->expect(Token::VAR_START_TYPE); 66 while (!$stream->isEOF()) { 67 $token = $stream->next(); 172 $stream->next(); 173 $node = $stream->next(); 202 $stream->expect(Token::VAR_START_TYPE); 209 $stream->expect(Token::VAR_END_TYPE); 224 $stream->expect(Token::VAR_END_TYPE); 239 $stream->expect(Token::VAR_END_TYPE); [all …]
|
H A D | TokenStreamTest.php | 38 $stream = new TokenStream([], 'foo', '{{ foo }}'); 47 $stream = new TokenStream(self::$tokens); 49 while (!$stream->isEOF()) { 50 $token = $stream->next(); 63 $stream = new TokenStream([ 66 while (!$stream->isEOF()) { 67 $stream->next(); 77 $stream = new TokenStream([ 80 while (!$stream->isEOF()) { 81 $stream->look(); [all …]
|
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Unit/ |
H A D | Stream.php | 202 $stream = new SUT($name), 203 $close1 = $stream->close() 217 $stream->open(), 225 $stream->close() 252 $stream = new SUT($name), 276 $stream = new SUT($name) 289 $stream = new SUT($name) 317 $stream = new SUT($name) 330 $stream = new SUT($name) 416 $stream->open(), [all …]
|
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Extension/Twig/ |
H A D | AsseticTokenParser.php | 57 $stream = $this->parser->getStream(); 64 $stream->next(); 69 $stream->next(); 74 $stream->next(); 79 $stream->next(); 84 $stream->next(); 89 $stream->next(); 94 $stream->next(); 105 $stream->next(); 111 $key = $stream->next()->getValue(); [all …]
|
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/ |
H A D | StreamHandler.php | 35 protected $stream; variable in Monolog\\Handler\\StreamHandler 71 if (is_resource($stream)) { 72 $this->stream = $stream; 91 fclose($this->stream); 93 $this->stream = null; 104 return $this->stream; 149 $this->stream = $stream; 152 $stream = $this->stream; 153 if (!is_resource($stream)) { 159 flock($stream, LOCK_EX); [all …]
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | StreamWrapper.php | 18 private $stream; variable in GuzzleHttp\\Psr7\\StreamWrapper 36 if ($stream->isReadable()) { 38 } elseif ($stream->isWritable()) { 51 * @param StreamInterface $stream 58 'guzzle' => ['stream' => $stream] 88 return $this->stream->read($count); 98 return $this->stream->tell(); 103 return $this->stream->eof(); 108 $this->stream->seek($offset, $whence); 115 $stream = clone($this->stream); [all …]
|
H A D | StreamDecoratorTrait.php | 19 $this->stream = $stream; 34 return $this->stream; 78 $this->stream->close(); 88 return $this->stream->detach(); 93 return $this->stream->getSize(); 98 return $this->stream->eof(); 103 return $this->stream->tell(); 108 return $this->stream->isReadable(); 113 return $this->stream->isWritable(); 118 return $this->stream->isSeekable(); [all …]
|
H A D | Stream.php | 25 private $stream; variable in GuzzleHttp\\Psr7\\Stream 49 if (!is_resource($stream)) { 61 $this->stream = $stream; 91 if (!isset($this->stream)) { 106 if (isset($this->stream)) { 116 if (!isset($this->stream)) { 120 $result = $this->stream; 121 unset($this->stream); 134 if (!isset($this->stream)) { 169 if (!isset($this->stream)) { [all …]
|
H A D | LimitStream.php | 23 * @param StreamInterface $stream Stream to wrap 30 StreamInterface $stream, argument 34 $this->stream = $stream; 42 if ($this->stream->eof()) { 91 $this->stream->seek($offset); 100 return $this->stream->tell() - $this->offset; 112 $current = $this->stream->tell(); 116 if ($this->stream->isSeekable()) { 117 $this->stream->seek($offset); 121 $this->stream->read($offset - $current); [all …]
|
H A D | InflateStream.php | 24 public function __construct(StreamInterface $stream) argument 27 $header = $stream->read(10); 28 $filenameHeaderLength = $this->getLengthOfPossibleFilenameHeader($stream, $header); 30 $stream = new LimitStream($stream, -1, 10 + $filenameHeaderLength); 31 $resource = StreamWrapper::getResource($stream); 33 …$this->stream = $stream->isSeekable() ? new Stream($resource) : new NoSeekStream(new Stream($resou… 37 * @param StreamInterface $stream 42 private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header) argument 49 while ($stream->read(1) !== chr(0)) {
|
H A D | Utils.php | 88 while (!$stream->eof()) { 89 $buf = $stream->read(1048576); 129 $pos = $stream->tell(); 132 $stream->rewind(); 136 while (!$stream->eof()) { 141 $stream->seek($pos); 252 while (!$stream->eof()) { 308 fwrite($stream, $resource); 309 fseek($stream, 0); 324 fseek($stream, 0); [all …]
|
/plugin/elasticsearch/vendor/ezimuel/guzzlestreams/src/ |
H A D | Stream.php | 9 private $stream; variable in GuzzleHttp\\Stream\\Stream 53 fseek($stream, 0); 116 $this->attach($stream); 129 if (!$this->stream) { 140 return $this->stream ? stream_get_contents($this->stream) : ''; 154 $result = $this->stream; 163 $this->stream = $stream; 177 if (!$this->stream) { 212 return !$this->stream || feof($this->stream); 217 return $this->stream ? ftell($this->stream) : false; [all …]
|
H A D | StreamDecoratorTrait.php | 17 $this->stream = $stream; 28 return $this->stream; 70 $this->stream->close(); 80 return $this->stream->detach(); 83 public function attach($stream) argument 90 return $this->stream->getSize(); 95 return $this->stream->eof(); 100 return $this->stream->tell(); 105 return $this->stream->isReadable(); 110 return $this->stream->isWritable(); [all …]
|
H A D | GuzzleStreamWrapper.php | 13 private $stream; variable in GuzzleHttp\\Stream\\GuzzleStreamWrapper 30 if ($stream->isReadable()) { 31 $mode = $stream->isWritable() ? 'r+' : 'r'; 32 } elseif ($stream->isWritable()) { 40 'guzzle' => ['stream' => $stream], 63 $this->stream = $options['guzzle']['stream']; 70 return $this->stream->read($count); 75 return (int) $this->stream->write($data); 80 return $this->stream->tell(); 85 return $this->stream->eof(); [all …]
|
H A D | Utils.php | 51 * @param StreamInterface $stream Stream to read 61 while (!$stream->eof()) { 62 $buf = $stream->read(1048576); 73 $buf = $stream->read($maxLen - $len); 132 StreamInterface $stream, argument 136 $pos = $stream->tell(); 138 if ($pos > 0 && !$stream->seek(0)) { 139 throw new SeekException($stream); 143 while (!$stream->eof()) { 148 $stream->seek($pos); [all …]
|
H A D | LimitStream.php | 20 * @param StreamInterface $stream Stream to wrap 27 StreamInterface $stream, argument 31 $this->stream = $stream; 39 if ($this->stream->eof()) { 48 $tell = $this->stream->tell(); 62 if (null === ($length = $this->stream->getSize())) { 89 return $this->stream->seek($offset); 98 return $this->stream->tell() - $this->offset; 111 $current = $this->stream->tell(); 115 if (!$this->stream->seek($offset)) { [all …]
|
/plugin/jplayer/vendor/happyworm/jplayer/lib/aurora/ |
H A D | flac.js | 67 var stream = this.bitstream; 68 if (!stream.available(32)) 148 stream.align(); 217 if (stream.read(1)) 222 if (stream.read(1)) { 595 var stream = this.stream; 738 var buffer = stream.readSingleBuffer(stream.remainingBytes()); 765 var stream = this.stream; 768 stream.advance(5); // magic 772 stream.advance(3); [all …]
|
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Integration/Filter/ |
H A D | Filter.php | 59 $stream = fopen($filename, 'r'), 63 SUT::append($stream, $name), 78 $stream = fopen($filename, 'r'), 82 SUT::prepend($stream, $name), 97 $stream = fopen($filename, 'r'), 102 SUT::append($stream, $name1), 103 SUT::append($stream, $name2), 123 SUT::append($stream, $name1), 124 SUT::prepend($stream, $name2), 144 SUT::prepend($stream, $name1), [all …]
|
/plugin/codemirror/dist/modes/ |
H A D | troff.min.js.map | 1 …stream","eatSpace","sol","ch","next","match","skipTo","eatWhile","eat","skipToEnd","cur","current"…
|
H A D | toml.min.js.map | 1 …stream","state","peek","next","sol","eol","match","skipTo","skipToEnd","eatSpace","eatWhile","c","…
|
H A D | pug.min.js.map | 1 …stream","state","sol","peek","tok","token","eol","yieldStatement","match","doctype","interpolation…
|
/plugin/webdav/vendor/sabre/event/lib/Loop/ |
H A D | functions.php | 68 * @param resource $stream 72 function addReadStream($stream, callable $cb) { argument 74 instance()->addReadStream($stream, $cb); 87 * @param resource $stream 93 instance()->addWriteStream($stream, $cb); 100 * @param resource $stream 103 function removeReadStream($stream) { argument 105 instance()->removeReadStream($stream); 112 * @param resource $stream 115 function removeWriteStream($stream) { argument [all …]
|
H A D | Loop.php | 128 * @param resource $stream 134 $this->readStreams[(int)$stream] = $stream; 148 * @param resource $stream 154 $this->writeStreams[(int)$stream] = $stream; 162 * @param resource $stream 165 function removeReadStream($stream) { argument 168 $this->readStreams[(int)$stream], 169 $this->readCallbacks[(int)$stream] 177 * @param resource $stream 180 function removeWriteStream($stream) { argument [all …]
|
/plugin/findologicxmlexport/vendor/hoa/stream/Filter/ |
H A D | Filter.php | 143 * @param mixed $stream Stream which received the filter. 153 $stream, argument 158 if ($stream instanceof Stream) { 159 $stream = $stream->getStream(); 164 $stream, 171 $stream, 191 $stream, argument 195 if ($stream instanceof Stream) { 196 $stream = $stream->getStream(); 201 $stream, [all …]
|