Home
last modified time | relevance | path

Searched refs:iterator (Results 151 – 175 of 221) sorted by last modified time

123456789

/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/
H A DChangeLog.md9 …ianbergmann/php-file-iterator/issues/37): Regression caused by fix for [#30](https://github.com/se…
15 * Fixed [#30](https://github.com/sebastianbergmann/php-file-iterator/issues/30): Exclude is not con…
21 * Fixed [#34](https://github.com/sebastianbergmann/php-file-iterator/issues/34): Factory should use…
35 …rt for wildcards (glob) in exclude](https://github.com/sebastianbergmann/php-file-iterator/pull/23)
37 [1.4.5]: https://github.com/sebastianbergmann/php-file-iterator/compare/1.4.4...1.4.5
38 [1.4.4]: https://github.com/sebastianbergmann/php-file-iterator/compare/1.4.3...1.4.4
39 [1.4.3]: https://github.com/sebastianbergmann/php-file-iterator/compare/1.4.2...1.4.3
40 [1.4.2]: https://github.com/sebastianbergmann/php-file-iterator/compare/1.4.1...1.4.2
41 [1.4.1]: https://github.com/sebastianbergmann/php-file-iterator/compare/1.4.0...1.4.1
H A DREADME.md7 composer require phpunit/php-file-iterator
11 composer require --dev phpunit/php-file-iterator
/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/src/
H A DFacade.php36 $iterator = $factory->getFileIterator(
42 foreach ($iterator as $file) {
H A DFactory.php52 $iterator = new AppendIterator;
56 $iterator->append(
70 return $iterator;
/plugin/findologicxmlexport/vendor/hoa/file/
H A DCHANGELOG.md61 * Use `hoa/iterator` `~1.0`. (Ivan Enderlin, 2014-11-09T11:00:47+01:00)
H A DFinder.php137 $iterator = new Iterator\CallbackFilter(
144 foreach ($iterator as $fileInfo) {
616 $iterator = new Iterator\IteratorIterator(
625 $iterator = new Iterator\Recursive\Iterator(
635 $iterator->setMaxDepth($maxDepth - 1);
639 $_iterator->append($iterator);
/plugin/findologicxmlexport/vendor/hoa/iterator/
H A DLookahead.php84 public function __construct(\Iterator $iterator) argument
86 $this->_iterator = $iterator;
H A DLookbehind.php77 public function __construct(\Iterator $iterator) argument
79 $this->_iterator = $iterator;
H A DMultiple.php69 \Iterator $iterator,
73 $out = parent::attachIterator($iterator, $infos);
H A DREADME.md10 … href="https://packagist.org/packages/hoa/iterator"><img src="https://img.shields.io/packagist/dt/…
36 require [`hoa/iterator`](https://packagist.org/packages/hoa/iterator):
39 $ composer require hoa/iterator '~2.0'
69 [`Iterator`](http://php.net/class.iterator).
71 ### External iterator
77 ### Traversable to iterator
119 content of an iterator. It extends
126 function ($value, $key, $iterator) {
281 `Hoa\Iterator\Demultiplexer` demuxes result from another iterator. This iterator
389 given buffer size over another iterator:
[all …]
H A DRegularExpression.php171 \Iterator $iterator,
177 parent::__construct($iterator);
H A DDemultiplexer.php80 public function __construct(\Traversable $iterator, $demuxer) argument
82 if ($iterator instanceof \IteratorAggregate) {
83 $iterator = $iterator->getIterator();
86 $this->_iterator = $iterator;
/plugin/findologicxmlexport/vendor/hoa/iterator/Recursive/
H A DMock.php64 public function __construct(\Traversable $iterator) argument
66 if ($iterator instanceof \IteratorAggregate) {
67 $iterator = $iterator->getIterator();
70 $this->_iterator = $iterator;
/plugin/findologicxmlexport/vendor/jms/metadata/src/Driver/
H A DFileLocator.php47 $iterator = new \RecursiveIteratorIterator(
52 foreach ($iterator as $file) {
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/
H A DObjectWithIterator.php17 public $iterator; variable in JMS\\Serializer\\Tests\\Fixtures\\ObjectWithIterator
19 public function __construct(\ArrayIterator $iterator) argument
21 $this->iterator = $iterator;
/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
H A DLimit.php60 $iterator = new LUT\Map(self::$_dummyArray),
61 $limit = new LUT\Limit($iterator, 2, 3)
76 ->given($iterator = new LUT\Map(self::$_dummyArray))
77 ->exception(function () use ($iterator) {
78 new LUT\Limit($iterator, -2, 3);
87 $iterator = new LUT\Map(self::$_dummyArray),
88 $limit = new LUT\Limit($iterator, 0, 0)
H A DRegularExpression.php63 $iterator = new LUT\RegularExpression($map, '/a/')
65 ->when($result = iterator_to_array($iterator))
84 $iterator = new LUT\Recursive\Iterator($regex)
86 ->when($result = iterator_to_array($iterator, false))
107 $iterator = new LUT\Recursive\RegularExpression(
115 ->when($result = $iterator->getChildren())
H A DCallbackFilter.php85 function ($value, $key, $iterator) use (
92 ->object($iterator)
164 $iterator = new LUT\Recursive\Iterator($filter)
166 ->when($result = iterator_to_array($iterator, false))
187 $iterator = new LUT\Recursive\Iterator($filter)
189 ->when($result = iterator_to_array($iterator))
H A DFileSystem.php61 $iterator = new LUT\FileSystem($root),
64 ->when(function () use ($iterator, &$result) {
65 foreach ($iterator as $pathname => $file) {
92 $iterator = new LUT\FileSystem(
99 ->when(function () use ($iterator, $splFileInfo, &$result) {
100 foreach ($iterator as $file) {
H A DInfinite.php56 $iterator = new LUT\Map(['a']),
57 $infinite = new LUT\Infinite($iterator),
H A DLookahead.php56 $iterator = new LUT\Map(['a', 'b', 'c']),
57 $lookahead = new LUT\Lookahead($iterator)
59 ->when($result = iterator_to_array($iterator))
69 $iterator = new LUT\Map(['a', 'b', 'c']),
70 $lookahead = new LUT\Lookahead($iterator)
128 $iterator = new LUT\Map(['a', 'b', 'c']),
129 $lookahead = new LUT\Lookahead($iterator)
170 $iterator = new LUT\Mock(),
171 $lookahead = new LUT\Lookahead($iterator)
H A DLookbehind.php56 $iterator = new LUT\Map(['a', 'b', 'c']),
57 $lookbehind = new LUT\Lookbehind($iterator)
59 ->when($result = iterator_to_array($iterator))
69 $iterator = new LUT\Map(['a', 'b', 'c']),
70 $lookbehind = new LUT\Lookbehind($iterator)
128 $iterator = new LUT\Map(['a', 'b', 'c']),
129 $lookbehind = new LUT\Lookbehind($iterator)
164 $iterator = new LUT\Mock(),
165 $lookbehind = new LUT\Lookbehind($iterator)
H A DRepeater.php60 $iterator = new LUT\Map(self::$_dummyArray),
61 $repeater = new LUT\Repeater($iterator, 3)
79 $iterator = new LUT\Map(self::$_dummyArray),
82 $iterator,
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Handler/
H A DIteratorHandlerTest.php43 public function testSerialize(\Iterator $iterator): void argument
45 $type = get_class($iterator);
55 $iterator,
74 self::assertEquals($iterator, $deserialized);
/plugin/findologicxmlexport/vendor/hoa/math/
H A DCHANGELOG.md79 * Use `hoa/iterator` `~1.0`. (Ivan Enderlin, 2014-11-09T11:03:54+01:00)

123456789