Home
last modified time | relevance | path

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

12345678910>>...13

/PHP-5.5/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);
/PHP-5.5/Zend/
H A Dzend_gc.h30 # define GC_BENCH_INC(counter) GC_G(counter)++ argument
31 # define GC_BENCH_DEC(counter) GC_G(counter)-- argument
32 # define GC_BENCH_PEAK(peak, counter) do { \ argument
33 if (GC_G(counter) > GC_G(peak)) { \
34 GC_G(peak) = GC_G(counter); \
38 # define GC_BENCH_INC(counter) argument
39 # define GC_BENCH_DEC(counter) argument
40 # define GC_BENCH_PEAK(peak, counter) argument
/PHP-5.5/ext/standard/tests/general_functions/
H A Dvar_export-locale.phpt41 $counter = 1;
52 $counter++;
65 $counter = 1;
76 $counter++;
103 $counter = 1;
114 $counter++;
136 $counter = 1;
147 $counter++;
180 $counter++;
275 $counter++;
[all …]
/PHP-5.5/ext/standard/tests/strings/
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 Dchr_ord.phpt37 $counter=1;
39 echo "-- Iteration $counter --\n";
41 $counter++;
45 $counter=1;
47 echo "-- Iteration $counter --\n";
49 $counter++;
H A Dfprintf_variation_001.phpt21 $counter = 1;
26 fprintf( $fp, "\n-- Iteration %d --\n",$counter);
31 $counter++;
H A Dfprintf_variation_002.phpt21 $counter = 1;
25 fprintf( $fp, "\n-- Iteration %d --\n",$counter);
30 $counter++;
H A Dfprintf_variation_009.phpt21 $counter = 1;
25 fprintf( $fp, "\n-- Iteration %d --\n",$counter);
30 $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_variation3.phpt46 $counter = 1;
48 echo "\n-- Iteration $counter --\n";
49 var_dump( vsprintf($format, $args_array[$counter-1]) );
50 $counter++;
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_variation19_64bit.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_64bit.phpt42 $counter = 1;
44 echo "\n-- Iteration $counter --\n";
45 var_dump( vsprintf($format, $args_array[$counter-1]) );
46 $counter++;
H A Dbug72434.phpt15 // The reference counter for $free_me is at -1 for PHP 7 right now.
16 // Increment the reference counter by 1 -> rc is 0
18 // Increment the reference counter by 1 again -> rc is 1
H A Dvprintf_variation9.phpt45 $counter = 1;
47 echo "\n-- Iteration $counter --\n";
48 $result = vprintf($format, $args_array[$counter-1]);
51 $counter++;
H A Dvsprintf_variation17.phpt38 $counter = 1;
40 echo "\n-- Iteration $counter --\n";
41 var_dump( vsprintf($format, $args_array[$counter-1]) );
42 $counter++;
H A Dvsprintf_variation5.phpt46 $counter = 1;
48 echo "\n-- Iteration $counter --\n";
49 var_dump( vsprintf($format, $args_array[$counter-1]) );
50 $counter++;
H A Dvprintf_variation11.phpt49 $counter = 1;
51 echo "\n-- Iteration $counter --\n";
52 $result = vprintf($format, $args_array[$counter-1]);
55 $counter++;
/PHP-5.5/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-5.5/ext/standard/tests/array/
H A Dextract_variation5.phpt12 $counter = 0;
15 echo "\n-- Iteration $counter --\n";
16 $counter++;

Completed in 36 milliseconds

12345678910>>...13