Home
last modified time | relevance | path

Searched refs:iterator (Results 126 – 150 of 221) sorted by path

123456789

/plugin/findologicxmlexport/vendor/hoa/iterator/Test/Unit/
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 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/hoa/math/
H A DCHANGELOG.md79 * Use `hoa/iterator` `~1.0`. (Ivan Enderlin, 2014-11-09T11:03:54+01:00)
/plugin/findologicxmlexport/vendor/hoa/math/Test/Unit/Combinatorics/Combination/
H A DCartesianProduct.php55 ->given($iterator = new CUT([]))
56 ->when($result = iterator_to_array($iterator))
65 ->given($iterator = new CUT([1, 2, 3]))
66 ->when($result = iterator_to_array($iterator))
79 ->given($iterator = new CUT([1, 2, 3], [4, 5, 6]))
80 ->when($result = iterator_to_array($iterator))
101 ->given($iterator = new CUT([1, 2, 3], [4, 5, 6], [7, 8, 9]))
102 ->when($result = iterator_to_array($iterator))
H A DGamma.php58 $iterator = new CUT($n, $k)
60 ->when($result = iterator_to_array($iterator))
72 $iterator = new CUT($n, $k)
74 ->when($result = iterator_to_array($iterator))
91 $iterator = new CUT($n, $k)
93 ->when($result = iterator_to_array($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/src/Handler/
H A DIteratorHandler.php64 \Iterator $iterator,
70 $context->stopVisiting($iterator);
71 $result = $visitor->visitArray(iterator_to_array($iterator), $type);
72 $context->startVisiting($iterator);
/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/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/jms/serializer/tests/Serializer/
H A DBaseSerializationTest.php1573 $iterator = new \ArrayIterator([
1577 $withIterator = new ObjectWithIterator($iterator);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A DChangeLog-4.0.md7 …m/sebastianbergmann/php-code-coverage/pull/515): Wrong use of recursive iterator causing duplicate…
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Djquery.min.js2 …w:Date.now,support:o}),"function"==typeof Symbol&&(r.fn[Symbol.iterator]=c[Symbol.iterator]),r.eac…
/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;
H A DIterator.php43 * @param Iterator $iterator
49 …public function __construct(Iterator $iterator, array $suffixes = array(), array $prefixes = array… argument
70 parent::__construct($iterator);
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DCount.php51 $iterator = $other->getIterator();
53 $iterator = $other;
56 if ($iterator instanceof Generator) {
57 return $this->getCountOfGenerator($iterator);
60 $key = $iterator->key();
61 $count = iterator_count($iterator);
66 $iterator->rewind();
67 while ($iterator->valid() && $key !== $iterator->key()) {
68 $iterator->next();
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php966 $iterator = new PHPUnit_Util_TestSuiteIterator($this);
969 $iterator = $this->iteratorFilter->factory($iterator, $this);
972 return $iterator;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/
H A DFactory.php39 public function factory(Iterator $iterator, PHPUnit_Framework_TestSuite $suite) argument
43 $iterator = $class->newInstance($iterator, $args, $suite);
46 return $iterator;
H A DGroup.php19 * @param RecursiveIterator $iterator
23 …public function __construct(RecursiveIterator $iterator, array $groups, PHPUnit_Framework_TestSuit… argument
25 parent::__construct($iterator);
H A DTest.php28 * @param RecursiveIterator $iterator
31 public function __construct(RecursiveIterator $iterator, $filter) argument
33 parent::__construct($iterator);
/plugin/findologicxmlexport/vendor/twig/twig/src/Util/
H A DDeprecationCollector.php43 $iterator = new \RegexIterator(
49 return $this->collect(new TemplateDirIterator($iterator));
59 public function collect(\Traversable $iterator) argument
65 foreach ($iterator as $name => $contents) {
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Extension/
H A DCoreTest.php295 private $iterator; variable in CoreTestIteratorAggregate
299 $this->iterator = new CoreTestIterator($array, $keys, $allowAccess, $maxPosition);
304 return $this->iterator;
310 private $iterator; variable in CoreTestIteratorAggregateAggregate
314 … $this->iterator = new CoreTestIteratorAggregate($array, $keys, $allowValueAccess, $maxPosition);
319 return $this->iterator;
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/
H A DFilesystemHelper.php16 …$iterator = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($dir, PHP_VERSION_ID < …
17 foreach ($iterator as $filename => $fileInfo) {
18 if ($iterator->isDot()) {

123456789