Home
last modified time | relevance | path

Searched refs:counter (Results 1 – 25 of 275) sorted by relevance

1234567891011

/PHP-7.4/tests/classes/
H A Diterators_008.phpt9 private $counter = 2;
12 echo __METHOD__ . "($this->counter)\n";
13 return $this->counter;
17 $this->counter--;
18 echo __METHOD__ . "($this->counter)\n";
22 echo __METHOD__ . "($this->counter)\n";
26 echo __METHOD__ . "($this->counter)\n";
30 echo __METHOD__ . "($this->counter)\n";
H A Ddestructor_and_globals.phpt13 class counter {
37 $obj1 = new counter;
40 $obj2 = new counter;
43 counter::destroy($obj1);
46 //counter::destroy($obj2);
H A Dsingleton_001.phpt7 private $counter = 0;
10 echo ++$this->counter;
/PHP-7.4/ext/enchant/tests/
H A Dbroker_describe.phpt30 $counter = 0;
39 …if ((isset($provider[$counter]['name']) && isset($provider[$counter]['desc']) && isset($provider[$
/PHP-7.4/ext/standard/tests/strings/
H A Dfprintf_variation_001.phpt14 $counter = 1;
19 fprintf( $fp, "\n-- Iteration %d --\n",$counter);
24 $counter++;
H A Dfprintf_variation_002.phpt14 $counter = 1;
18 fprintf( $fp, "\n-- Iteration %d --\n",$counter);
23 $counter++;
H A Dfprintf_variation_009.phpt14 $counter = 1;
18 fprintf( $fp, "\n-- Iteration %d --\n",$counter);
23 $counter++;
H A Dvsprintf_variation19.phpt47 $counter = 1;
49 echo"\n-- Iteration $counter --\n";
50 var_dump( vsprintf($format, $args_array[$counter-1]) );
51 $counter++;
H A Dvsprintf_variation19_64bit.phpt47 $counter = 1;
49 echo"\n-- Iteration $counter --\n";
50 var_dump( vsprintf($format, $args_array[$counter-1]) );
51 $counter++;
H A Dbug72434.phpt11 // The reference counter for $free_me is at -1 for PHP 7 right now.
12 // Increment the reference counter by 1 -> rc is 0
14 // Increment the reference counter by 1 again -> rc is 1
H A Dvprintf_variation15.phpt42 $counter = 1;
44 echo "\n-- Iteration $counter --\n";
45 $result = vprintf($format, $args_array[$counter-1]);
48 $counter++;
H A Dvprintf_variation15_64bit.phpt42 $counter = 1;
44 echo "\n-- Iteration $counter --\n";
45 $result = vprintf($format, $args_array[$counter-1]);
48 $counter++;
H A Dvprintf_variation19.phpt47 $counter = 1;
49 echo"\n-- Iteration $counter --\n";
50 $result = vprintf($format, $args_array[$counter-1]);
53 $counter++;
H A Dvprintf_variation3.phpt46 $counter = 1;
48 echo "\n-- Iteration $counter --\n";
49 $result = vprintf($format, $args_array[$counter-1]);
52 $counter++;
H A Dvsprintf_variation15.phpt42 $counter = 1;
44 echo "\n-- Iteration $counter --\n";
45 var_dump( vsprintf($format, $args_array[$counter-1]) );
46 $counter++;
H A Dvsprintf_variation15_64bit.phpt42 $counter = 1;
44 echo "\n-- Iteration $counter --\n";
45 var_dump( vsprintf($format, $args_array[$counter-1]) );
46 $counter++;
H A Dvsprintf_variation3.phpt46 $counter = 1;
48 echo "\n-- Iteration $counter --\n";
49 var_dump( vsprintf($format, $args_array[$counter-1]) );
50 $counter++;
H A Dvprintf_variation19_64bit.phpt47 $counter = 1;
49 echo"\n-- Iteration $counter --\n";
50 $result = vprintf($format, $args_array[$counter-1]);
53 $counter++;
/PHP-7.4/ext/opcache/tests/
H A Dpreload_bug78175_2.inc13 static $counter = 0;
14 return $counter++;
/PHP-7.4/ext/standard/tests/array/
H A Dextract_variation5.phpt12 $counter = 0;
15 echo "\n-- Iteration $counter --\n";
16 $counter++;
H A Dextract_variation2.phpt13 $counter = 0;
16 echo "\n-- Iteration $counter --\n";
17 $counter++;
/PHP-7.4/ext/standard/tests/general_functions/
H A Dvar_export-locale.phpt44 $counter = 1;
55 $counter++;
68 $counter = 1;
79 $counter++;
106 $counter = 1;
117 $counter++;
139 $counter = 1;
150 $counter++;
183 $counter++;
278 $counter++;
[all …]
H A Dvar_export-locale_32.phpt44 $counter = 1;
55 $counter++;
68 $counter = 1;
79 $counter++;
106 $counter = 1;
117 $counter++;
139 $counter = 1;
150 $counter++;
183 $counter++;
278 $counter++;
[all …]
/PHP-7.4/tests/lang/
H A DforeachLoop.002.phpt31 $counter=0;
33 array_push($a, "new.$counter");
36 if ($counter++>10) {
45 $counter=0;
47 array_push($a, "new.$counter");
50 if ($counter++>10) {
/PHP-7.4/ext/standard/tests/url/
H A Dbase64_encode_basic_002.phpt27 $counter = 1;
29 echo "-- Iteration $counter --\n";
40 $counter ++;

Completed in 49 milliseconds

1234567891011