Home
last modified time | relevance | path

Searched refs:yield (Results 51 – 75 of 292) sorted by relevance

12345678910>>...12

/PHP-8.3/Zend/tests/
H A Dbug72373.phpt7 yield 1;
8 yield 2;
9 yield 3;
H A Dbug79657.phpt2 Bug #79657: "yield from" hangs when invalid value encountered
15 yield 'first';
18 yield from throwException();
23 yield from $callback();
H A Dgh15108-005.phpt10 yield 'foo';
17 yield from new It();
21 yield from f();
26 yield from g();
H A Dgh15108-006.phpt10 yield 'foo';
17 yield from new It();
21 yield from f();
26 yield from $gen;
H A Dbug69740.phpt2 Bug #69740: finally in generator (yield) swallows exception in iteration
8 yield 1;
9 yield 2;
H A Dgh15108-007.phpt10 yield 'foo';
17 yield from new It();
21 yield from f();
26 yield from $gen;
H A Dgh15108-002.phpt10 yield 'foo';
17 yield from new It();
21 yield from g();
H A Dgh9916-004.phpt7 yield from (function () {
12 yield;
15 yield;
/PHP-8.3/Zend/tests/generators/
H A Dyield_from_iterator_agregate.phpt2 yield from with an IteratorAggregate
9 yield;
13 yield from new foo;
H A Dbug71297.phpt2 Bug #71297 (Memory leak with consecutive yield from)
7 yield array_fill(0, 10000, 4);
13 yield from foo();
H A Dbug70904.phpt2 Bug #70904 (yield from incorrectly marks valid generator as finished)
7 yield 1;
11 yield from $g1;
13 yield 2;
H A Dyield_from_aborted_generator_with_children.phpt2 Impossible to yield from a generator which already failed, nested version
7 yield 0;
11 yield from $gen;
26 Fatal error: Uncaught Error: Generator passed to yield from was aborted without proper return and i…
H A Dbug78434.phpt7 yield 0;
13 yield from $generator;
17 yield from $generator;
H A Drepeated_yield_from_with_immediate_release.phpt2 A generator can be yielded from multiple times, testing immediate release of the yield from'ing gen…
7 yield 42;
10 yield from $gen;
H A Dyield_from_chain_dtor_order.phpt7 yield 1;
10 yield from gen2();
13 yield from $g;
H A Dbug70965.phpt2 Bug #70965 (yield from with a common iterator primes too much)
7 yield from [1, 2, 3, 4, 5];
11 yield from $g;
H A Dgenerator_static_method.phpt10 yield 1;
11 yield 2;
12 yield 3;
H A Dyield_by_reference_optimization.phpt2 Make sure optimization does not interfere with yield by ref
7 yield $v = 0;
8 yield $v = 1;
H A Dyield_from_already_running.phpt7 yield from yield;
14 Fatal error: Uncaught Error: Impossible to yield from the Generator being currently run in %s:%d
H A Dyield_from_valid_exception.phpt2 Exception from valid() during yield from
18 // the fact that the yield from result is used is relevant.
19 var_dump(yield from new FooBar);
H A Dgc_with_yield_from.phpt2 Verify yield from on generators being properly cycle collected
11 yield 1;
19 yield from $gens[] = $x ? gen(--$x) : root();
/PHP-8.3/Zend/tests/arrow_functions/
H A D008.phpt8 $fn = fn() => yield 123;
13 $fn = fn() => yield from [456, 789];
18 $fn = fn() => fn() => yield 987;
/PHP-8.3/ext/opcache/tests/opt/
H A Dsccp_032.phpt15 $result = yield from [];
17 yield from $a;
18 yield $result;
20 yield from $a;
/PHP-8.3/Zend/tests/type_declarations/iterable/
H A Diterable_001.phpt11 yield 1;
12 yield 2;
13 yield 3;
/PHP-8.3/ext/pcre/pcre2lib/
H A Dpcre2_maketables.c78 uint8_t *yield = (uint8_t *)malloc(TABLES_LENGTH); local
84 uint8_t *yield = (uint8_t *)((gcontext != NULL)?
92 if (yield == NULL) return NULL;
93 p = yield;
149 return yield;

Completed in 19 milliseconds

12345678910>>...12