Home
last modified time | relevance | path

Searched refs:stream (Results 276 – 300 of 459) sorted by path

1...<<111213141516171819

/plugin/fetchmedia/
H A Dyarn.lock683 block-stream@*:
917 combined-stream@^1.0.5, combined-stream@~1.0.5:
931 concat-stream@^1.6.0:
1075 delayed-stream@~1.0.0:
1386 is-stream "^1.1.0"
1574 get-stream@^3.0.0:
1893 is-stream@^1.1.0:
2164 mute-stream@0.0.7:
2550 …-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-s…
2831 stream-http@^2.3.1:
[all …]
/plugin/findologicxmlexport/vendor/hoa/compiler/Bin/
H A DPp.php130 $stream = new File\Read($language);
131 $data = $stream->readAll();
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/
H A DLlk.php63 public static function load(Stream\IStream\In $stream) argument
65 $pp = $stream->readAll();
70 if ($stream instanceof Stream\IStream\Pointable) {
71 if (0 < $stream->tell()) {
73 ': The stream ' . $stream->getStreamName() .
79 $stream->getStreamName();
86 static::parsePP($pp, $tokens, $rawRules, $pragmas, $stream->getStreamName());
/plugin/findologicxmlexport/vendor/hoa/compiler/Llk/Rule/
H A DToken.php201 $stream = new File\Read('hoa://Library/Regex/Grammar.pp');
202 $stream->rewind();
204 static::$_regexCompiler = Compiler\Llk::load($stream);
/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Unit/Llk/
H A DLlk.php57 ->given($stream = new File\ReadWrite('hoa://Test/Vfs/Empty.pp?type=file'))
58 ->exception(function () use ($stream) {
59 SUT::load($stream);
72 $stream = new File\ReadWrite('hoa://Test/Vfs/Grammar.pp?type=file'),
73 $stream->writeAll(
83 ->when($result = SUT::load($stream))
107 $stream = new File\Read('hoa://Library/Compiler/Llk/Llk.pp'),
108 $parser = SUT::load($stream)
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DCHANGELOG.md18 * Composer: Fix `hoa/stream` dependency. (Ivan Enderlin, 2016-03-03T10:13:50+01:00)
H A DREADME.md238 an object (of kind `Hoa\File\Write`). However, because this is a stream, the
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DXcallable.php277 $stream = new \Mock\Hoa\Stream\IStream\Out(),
279 $xcallable = new SUT($stream)
284 ->isEqualTo([$stream, $method]);
/plugin/findologicxmlexport/vendor/hoa/event/
H A DREADME.md93 smart, we can directly attach a stream to an event, like:
/plugin/findologicxmlexport/vendor/hoa/file/
H A DCHANGELOG.md37 * `getSize` returns `false` if stream is unstatable. (Ivan Enderlin, 2015-05-27T11:05:46+02:00)
38 * `getStatistic` works on the stream pointer. (Ivan Enderlin, 2015-05-27T11:04:26+02:00)
H A DFile.php345 $stream = $this->getStream();
347 if (null === $stream) {
351 return ftell($stream);
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DCHANGELOG.md3 * Documentation: Add details about stream context. (Ivan Enderlin, 2017-02-21T16:56:47+01:00)
72 * Avoid closing a closed stream (Jeremy Benoist, 2016-11-08T13:46:47+01:00)
108 * Add `stream_metadata` in the stream wrapper. (Ivan Enderlin, 2015-03-24T10:05:41+01:00)
H A DComposite.php68 * @param object $stream Current stream.
71 protected function setStream($stream) argument
74 $this->_stream = $stream;
H A DREADME.md57 require [`hoa/stream`](https://packagist.org/packages/hoa/stream):
117 * `Structural`, for a structural stream, i.e. a stream acting like a
122 Thus, if one only need to read from a stream, it will type the stream
130 ### Define a concrete stream
135 stream, for instance:
267 the stream instanciation and the stream opening, we can attach new
337 * `redirect`, when the stream is redirected to another stream,
436 Finally, we use the stream as usual. A stream is not necessarily an
439 stream resource.
522 An XML stream reads and writes from another inner stream (a file, a
[all …]
H A DStream.php407 public function _setStream($stream) argument
409 if (false === is_resource($stream) &&
410 ('resource' !== gettype($stream) ||
411 'Unknown' !== get_resource_type($stream))) {
416 gettype($stream)
421 $this->_bucket[self::RESOURCE] = $stream;
/plugin/findologicxmlexport/vendor/hoa/stream/Filter/
H A DBasic.php213 return isset($this->stream) ? $this->stream : null;
H A DFilter.php143 * @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 …]
H A DLateComputed.php96 $stream = $this->getStream();
99 $stream,
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Integration/Filter/
H A DFilter.php59 $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 …]
H A DLateComputed.php63 $stream = fopen($filename, 'r')
66 SUT::append($stream, $name),
67 $result = stream_get_contents($stream)
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Integration/
H A DStream.php69 $stream = new SUT('http://127.0.0.1:' . $port, null, true),
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Unit/
H A DBucket.php78 $stream = fopen(__FILE__, 'r'),
81 ->when($result = new SUT($stream, SUT::IS_A_STREAM, $buffer))
101 $stream = fopen(__FILE__, 'r'),
102 $bucket = new SUT($stream, SUT::IS_A_STREAM)
114 $stream = fopen(__FILE__, 'r'),
116 $bucket = new SUT($stream, SUT::IS_A_STREAM, $oldBuffer),
139 $stream = fopen(__FILE__, 'r'),
141 $bucket = new SUT($stream, SUT::IS_A_STREAM, $buffer)
154 $stream = fopen(__FILE__, 'r'),
156 $bucket = new SUT($stream, SUT::IS_A_STREAM, $buffer)
H A DComposite.php56 $stream = new \StdClass(),
59 ->when($result = $this->invoke($composite)->setStream($stream))
69 $stream = new \StdClass(),
71 $this->invoke($composite)->setStream($stream)
76 ->isIdenticalTo($stream);
H A DStream.php202 $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/findologicxmlexport/vendor/hoa/stream/Test/Unit/Filter/
H A DFilter.php136 $stream = fopen('hoa://Test/Vfs/Foo?type=file', 'r'),
139 ->when($result = SUT::append($stream, $name))
149 $stream = fopen('hoa://Test/Vfs/Foo?type=file', 'r'),
152 ->when($result = SUT::prepend($stream, $name))
162 $stream = fopen('hoa://Test/Vfs/Foo?type=file', 'r'),
164 $filter = SUT::append($stream, $name)
176 $stream = fopen('hoa://Test/Vfs/Foo?type=file', 'r'),
178 $filter = SUT::append($stream, $name)

1...<<111213141516171819