Searched refs:percent (Results 1 – 20 of 20) sorted by relevance
/php-src/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-src/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_simple_types_numeric_strings_icu72-1.phpt | 19 number percent {e,number,percent} 48 number percent 133,631,796,550%
|
H A D | msgfmt_format_error3.phpt | 10 {foo,number,percent}
|
H A D | formatter_format6.phpt | 16 * currency and percent formatting.
|
H A D | formatter_format8.phpt | 16 * currency and percent formatting.
|
H A D | formatter_format7.phpt | 17 * currency and percent formatting.
|
/php-src/Zend/tests/ |
H A D | bug78154.phpt | 25 Exception: similar_text(): Argument #3 ($percent) could not be passed by reference 26 Exception: similar_text(): Argument #3 ($percent) could not be passed by reference
|
/php-src/ext/gd/tests/ |
H A D | imagecopyresampled_basic.phpt | 35 $percent = 0.5; // new image 50% of original 39 $new_width = $width * $percent; 40 $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-src/ext/simplexml/tests/ |
H A D | bug79971_1.phpt | 23 Warning: simplexml_load_file(): URI must not contain percent-encoded NUL bytes in %s on line %d 28 Warning: SimpleXMLElement::asXML(): URI must not contain percent-encoded NUL bytes in %s on line %d
|
/php-src/ext/dom/tests/modern/xml/ |
H A D | XMLDocument_fromFile_03.phpt | 16 Dom\XMLDocument::createFromFile(): Argument #1 ($path) must not contain percent-encoded NUL bytes
|
/php-src/ext/dom/tests/ |
H A D | bug79971_2.phpt | 17 Warning: DOMImplementation::createDocumentType(): URI must not contain percent-encoded NUL bytes in…
|
/php-src/ext/dom/tests/modern/html/parser/ |
H A D | HTMLDocument_fromFile_nul_terminator_cases_path.phpt | 22 Dom\HTMLDocument::createFromFile(): Argument #1 ($path) must not contain percent-encoded NUL bytes
|
/php-src/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-src/ext/dom/lexbor/lexbor/css/ |
H A D | value.h | 223 lxb_css_value_percentage_sr(const lxb_css_value_percentage_t *percent,
|
/php-src/ext/dom/lexbor/ |
H A D | LICENSE | 21 otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
/php-src/ext/standard/ |
H A D | basic_functions.stub.php | 2501 /** @param float $percent */ 2502 function similar_text(string $string1, string $string2, &$percent = null): int {}
|
H A D | string.c | 3634 zval *percent = NULL; local 3642 Z_PARAM_ZVAL(percent) 3647 ZEND_TRY_ASSIGN_REF_DOUBLE(percent, 0); 3656 ZEND_TRY_ASSIGN_REF_DOUBLE(percent, sim * 200.0 / (ZSTR_LEN(t1) + ZSTR_LEN(t2)));
|
H A D | basic_functions_arginfo.h | 968 ZEND_ARG_INFO_WITH_DEFAULT_VALUE(1, percent, "null")
|
Completed in 74 milliseconds