Home
last modified time | relevance | path

Searched refs:i (Results 151 – 175 of 2233) sorted by path

12345678910>>...90

/php-src/Zend/tests/generators/
H A Dbug65161.phpt16 foreach (testGenerator() as $i);
H A Dbug69419.phpt15 foreach(genRefOuter() as $i) {
16 var_dump($i);
H A Dbug71297.phpt11 $i = 0;
14 print $i++;
19 foreach (genLeak() as $i) {
H A Dbug74954.phpt26 foreach ($gens as $i => $g) {
H A Dgc_running_generator.phpt14 for ($i = 0; $i < 10000; $i++) {
H A Dgenerator_static_method.phpt19 foreach (ExtendedTest::gen() as $i) {
20 var_dump($i);
H A Dgenerator_trampoline.phpt7 for ($i = 0; $i < 5; $i++) {
8 yield $i;
H A Dmutli_yield_from_with_exception.phpt25 foreach ($gens as $i => $g) {
26 print "Generator $i\n";
H A Dxrange.phpt7 for ($i = $start; $i <= $end; $i += $step) {
8 yield $i;
12 foreach (xrange(10, 20, 2) as $i) {
13 var_dump($i);
H A Dyield_from_deep_recursion.phpt7 function from($i) {
8 yield $i;
11 function gen($i = 0) {
12 if ($i < 50000) {
13 yield from gen(++$i);
15 yield $i;
16 yield from from(++$i);
H A Dyield_from_multi_tree.phpt23 for ($i = 0; $i < (1 << $level); $i++) {
24 $all[] = $gens[$level][$i] = gen($gens[$level-1][$i >> 1], $level);
H A Dyield_from_multi_tree_exception.phpt27 for ($i = 0; $i < (1 << $level); $i++) {
28 $all[] = $gens[$level][$i] = gen($gens[$level-1][$i >> 1], $level);
32 for ($i = 0; $i < 2; $i++) {
H A Dyield_from_multi_tree_single_nodes.phpt23 for ($i = 0; $i < (1 << $level); $i++) {
24 $all[] = $gens[$level][$i] = gen($gens[$level-1][$i >> 1], $level);
H A Dyield_precedence.phpt19 for ($g->rewind(), $i = 1; $g->valid(); $g->send($i), $i++) {
/php-src/Zend/tests/generators/finally/
H A Dreturn_yield.phpt6 for ($i = $f; $i <= $t; $i++) {
10 yield $i;
H A Dthrow_yield.phpt6 for ($i = $f; $i <= $t; $i++) {
10 yield $i;
H A Dyield_return.phpt6 for ($i = $f; $i <= $t; $i++) {
8 yield $i;
H A Dyield_throw.phpt6 for ($i = $f; $i <= $t; $i++) {
8 yield $i;
/php-src/Zend/tests/
H A Dgh10570.phpt6 for ($i = 0; $i < 2; $i++) {
H A Dgh10709_3.phpt8 static $i = 0;
9 $i++;
10 if ($i === 1) {
H A Dgh11189.phpt14 for ($i = count($a); $i > 0; --$i) {
H A Dgh11189_1.phpt14 for ($i = count($a); $i > 0; --$i) {
H A Dgh12073.phpt22 for ($i = 0; $i < 10_000; $i++) {
H A Dgh13569.phpt8 for ($i = 0; $i < 30_000; $i++) {
H A Dgh13670_001.phpt30 for ($i = 0; $i < $defaultThreshold+1; $i++) {
35 for ($i = 0; $i < 100; $i++) {

Completed in 41 milliseconds

12345678910>>...90