Home
last modified time | relevance | path

Searched refs:counter (Results 101 – 125 of 320) sorted by relevance

12345678910>>...13

/PHP-7.2/ext/xmlrpc/libxmlrpc/
H A Dxml_element.c285 int counter = 0; in create_xml_escape() local
287 pString[counter++] = '&'; in create_xml_escape()
288 pString[counter++] = '#'; in create_xml_escape()
290 pString[counter++] = c / 100 + '0'; in create_xml_escape()
293 pString[counter++] = c / 10 + '0'; in create_xml_escape()
296 pString[counter++] = c + '0'; in create_xml_escape()
297 pString[counter++] = ';'; in create_xml_escape()
298 return counter; in create_xml_escape()
/PHP-7.2/ext/standard/tests/strings/
H A Dvfprintf_variation6.phpt66 $counter = 1;
68 fprintf($fp, "\n-- Iteration %d --\n",$counter);
70 $counter++;
H A Dvprintf_variation10.phpt68 $counter = 1;
70 echo "\n-- Iteration $counter --\n";
74 $counter++;
H A Dvprintf_variation12.phpt72 $counter = 1;
74 echo "\n-- Iteration $counter --\n";
78 $counter++;
H A Dvprintf_variation12_64bit.phpt72 $counter = 1;
74 echo "\n-- Iteration $counter --\n";
78 $counter++;
H A Dvprintf_variation16.phpt65 $counter = 1;
67 echo "\n-- Iteration $counter --\n";
71 $counter++;
H A Dvprintf_variation16_64bit.phpt65 $counter = 1;
67 echo "\n-- Iteration $counter --\n";
71 $counter++;
H A Dvprintf_variation4.phpt65 $counter = 1;
67 echo "\n-- Iteration $counter --\n";
71 $counter++;
H A Dvprintf_variation4_64bit.phpt65 $counter = 1;
67 echo "\n-- Iteration $counter --\n";
71 $counter++;
H A Dvsprintf_variation12.phpt72 $counter = 1;
74 echo "\n-- Iteration $counter --\n";
76 $counter++;
H A Dvsprintf_variation12_64bit.phpt72 $counter = 1;
74 echo "\n-- Iteration $counter --\n";
76 $counter++;
H A Dvsprintf_variation16.phpt65 $counter = 1;
67 echo "\n-- Iteration $counter --\n";
69 $counter++;
H A Dvsprintf_variation16_64bit.phpt65 $counter = 1;
67 echo "\n-- Iteration $counter --\n";
69 $counter++;
H A Dvsprintf_variation2.phpt84 $counter = 1;
86 echo "\n-- Iteration $counter --\n";
88 $counter++;
H A Dvsprintf_variation4.phpt65 $counter = 1;
67 echo "\n-- Iteration $counter --\n";
69 $counter++;
H A Dvsprintf_variation4_64bit.phpt65 $counter = 1;
67 echo "\n-- Iteration $counter --\n";
69 $counter++;
H A Dstrtok_variation3.phpt61 for($counter = 1; $counter <= 10; $counter++) {
H A Dvfprintf_variation10.phpt73 $counter = 1;
75 fprintf($fp, "\n-- Iteration %d --\n",$counter);
77 $counter++;
H A Dvfprintf_variation12.phpt77 $counter = 1;
79 fprintf($fp, "\n-- Iteration %d --\n",$counter);
81 $counter++;
H A Dvfprintf_variation12_64bit.phpt77 $counter = 1;
79 fprintf($fp, "\n-- Iteration %d --\n",$counter);
81 $counter++;
H A Dvfprintf_variation16.phpt70 $counter = 1;
72 fprintf($fp, "\n-- Iteration %d --\n",$counter);
74 $counter++;
/PHP-7.2/ext/standard/tests/general_functions/
H A Dis_callable_basic1.phpt18 $counter = 1;
20 echo "-- Iteration $counter --\n";
28 $counter++;
/PHP-7.2/ext/standard/tests/array/
H A Dbug69166.phpt2 Fixed #69166 (Assigning array_values() to array does not reset key counter)
H A Darray_rand_variation3.phpt50 $counter = 1;
52 echo "\n-- Iteration $counter --\n";
55 $counter++;
H A Dshuffle_variation2.phpt37 $counter = 1;
39 echo "\n-- Iteration $counter --\n";
43 $counter++;

Completed in 61 milliseconds

12345678910>>...13