Home
last modified time | relevance | path

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

12345678910

/php-src/Zend/tests/
H A Dstatic_variables_traits.phpt7 public static function counter() {
15 T::counter as counter1;
16 T::counter as counter2;
24 C1::counter();
27 C2::counter();
29 C1::counter();
32 C2::counter();
H A Dbug79836.phpt7 $counter = 0;
8 ob_start(function ($buffer) use (&$c, &$counter) {
10 ++$counter;
15 echo $counter . "\n";
/php-src/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";
31 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);
/php-src/ext/enchant/tests/
H A Dbroker_describe.phpt27 $counter = 0;
36 …if ((isset($provider[$counter]['name']) && isset($provider[$counter]['desc']) && isset($provider[$
/php-src/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 Dvprintf_variation19.phpt42 $counter = 1;
44 echo"\n-- Iteration $counter --\n";
45 $result = vprintf($format, $args_array[$counter-1]);
48 $counter++;
H A Dvprintf_variation19_64bit.phpt42 $counter = 1;
44 echo"\n-- Iteration $counter --\n";
45 $result = vprintf($format, $args_array[$counter-1]);
48 $counter++;
H A Dvprintf_variation15_64bit.phpt37 $counter = 1;
39 echo "\n-- Iteration $counter --\n";
40 $result = vprintf($format, $args_array[$counter-1]);
43 $counter++;
H A Dvprintf_variation3.phpt41 $counter = 1;
43 echo "\n-- Iteration $counter --\n";
44 $result = vprintf($format, $args_array[$counter-1]);
47 $counter++;
H A Dvprintf_variation5.phpt41 $counter = 1;
43 echo "\n-- Iteration $counter --\n";
44 $result = vprintf($format, $args_array[$counter-1]);
47 $counter++;
H A Dvprintf_variation9.phpt41 $counter = 1;
43 echo "\n-- Iteration $counter --\n";
44 $result = vprintf($format, $args_array[$counter-1]);
47 $counter++;
H A Dvprintf_variation15.phpt37 $counter = 1;
39 echo "\n-- Iteration $counter --\n";
40 $result = vprintf($format, $args_array[$counter-1]);
43 $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_variation11.phpt44 $counter = 1;
46 echo "\n-- Iteration $counter --\n";
47 $result = vprintf($format, $args_array[$counter-1]);
50 $counter++;
H A Dvprintf_variation11_64bit.phpt44 $counter = 1;
46 echo "\n-- Iteration $counter --\n";
47 $result = vprintf($format, $args_array[$counter-1]);
50 $counter++;
H A Dvprintf_variation17.phpt33 $counter = 1;
35 echo "\n-- Iteration $counter --\n";
36 $result = vprintf($format, $args_array[$counter-1]);
39 $counter++;
/php-src/ext/standard/tests/general_functions/
H A Dvar_export-locale.phpt39 $counter = 1;
50 $counter++;
63 $counter = 1;
74 $counter++;
101 $counter = 1;
112 $counter++;
134 $counter = 1;
145 $counter++;
178 $counter++;
273 $counter++;
[all …]
H A Dvar_export-locale_32.phpt39 $counter = 1;
50 $counter++;
63 $counter = 1;
74 $counter++;
101 $counter = 1;
112 $counter++;
134 $counter = 1;
145 $counter++;
178 $counter++;
273 $counter++;
[all …]
/php-src/ext/standard/tests/array/
H A Darray_fill_basic.phpt27 $counter = 1;
30 echo "-- Iteration $counter --\n";
35 $counter++;
H A Dextract_variation5.phpt12 $counter = 0;
15 echo "\n-- Iteration $counter --\n";
16 $counter++;
/php-src/ext/opcache/tests/
H A Dpreload_bug78175_2.inc13 static $counter = 0;
14 return $counter++;
/php-src/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) {

Completed in 28 milliseconds

12345678910