Searched refs:percent (Results 1 – 19 of 19) sorted by relevance
/PHP-8.0/ext/standard/tests/strings/ |
H A D | similar_text_basic.phpt | 15 $percent = 0; 16 similar_text("abcdefgh", "efg", $percent); 17 var_dump($percent); 18 similar_text("abcdefgh", "mno", $percent); 19 var_dump($percent); 20 similar_text("abcdefghcc", "c", $percent); 21 var_dump($percent); 22 similar_text("abcdefghabcdef", "zzzzabcdefggg", $percent); 23 var_dump($percent);
|
/PHP-8.0/ext/intl/tests/ |
H A D | msgfmt_format_simple_types_numeric_strings.phpt | 19 number percent {e,number,percent} 48 number percent 133,631,796,550%
|
H A D | msgfmt_format_error3.phpt | 12 {foo,number,percent}
|
H A D | formatter_format4.phpt | 16 * currency and percent formatting.
|
H A D | formatter_format5.phpt | 16 * currency and percent formatting.
|
H A D | formatter_format2.phpt | 15 * currency and percent formatting.
|
H A D | formatter_format3.phpt | 16 * currency and percent formatting.
|
H A D | formatter_format6.phpt | 16 * currency and percent formatting.
|
H A D | formatter_format8.phpt | 15 * currency and percent formatting.
|
H A D | formatter_format7.phpt | 16 * currency and percent formatting.
|
/PHP-8.0/Zend/tests/ |
H A D | bug78154.phpt | 25 Exception: similar_text(): Argument #3 ($percent) cannot be passed by reference 26 Exception: similar_text(): Argument #3 ($percent) cannot be passed by reference
|
/PHP-8.0/ext/gd/tests/ |
H A D | imagecopyresampled_basic.phpt | 31 $percent = 0.5; // new image 50% of original 35 $new_width = $width * $percent; 36 $new_height = $height * $percent;
|
H A D | Rochester-Regular.otf.LICENSE.txt | 21 otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
/PHP-8.0/ext/simplexml/tests/ |
H A D | bug79971_1.phpt | 21 Warning: simplexml_load_file(): URI must not contain percent-encoded NUL bytes in %s on line %d 26 Warning: SimpleXMLElement::asXML(): URI must not contain percent-encoded NUL bytes in %s on line %d
|
/PHP-8.0/ext/dom/tests/ |
H A D | bug79971_2.phpt | 19 Warning: DOMImplementation::createDocumentType(): URI must not contain percent-encoded NUL bytes in…
|
/PHP-8.0/ext/phar/tests/files/ |
H A D | pear2coverage.phar | 337 $percent = 0; 339 $percent = round(($covered / $total) * 100); 342 if ($percent < 50) { 344 } elseif ($percent < 75) { 349 $output->text($percent . '% code coverage'); 362 $percent = $source->coveragePercentage(); 364 if ($percent < 50) { 366 } elseif ($percent < 75) { 450 $percent = $source->coveragePercentage(); 452 if ($percent < 50) { [all …]
|
/PHP-8.0/ext/standard/ |
H A D | basic_functions.stub.php | 626 /** @param float $percent */ 627 function similar_text(string $string1, string $string2, &$percent = null): int {} argument
|
H A D | string.c | 3357 zval *percent = NULL; local 3365 Z_PARAM_ZVAL(percent) 3370 ZEND_TRY_ASSIGN_REF_DOUBLE(percent, 0); 3379 ZEND_TRY_ASSIGN_REF_DOUBLE(percent, sim * 200.0 / (ZSTR_LEN(t1) + ZSTR_LEN(t2)));
|
H A D | basic_functions_arginfo.h | 970 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, percent, "null")
|
Completed in 49 milliseconds