Searched refs:allow_errors (Results 1 – 4 of 4) sorted by relevance
/PHP-8.1/ext/intl/collator/ |
H A D | collator_is_numeric.h | 22 …ollator_is_numeric( UChar *str, int32_t length, zend_long *lval, double *dval, bool allow_errors );
|
H A D | collator_is_numeric.c | 207 …collator_is_numeric( UChar *str, int32_t length, zend_long *lval, double *dval, bool allow_errors ) in collator_is_numeric() argument 249 if (!allow_errors) { in collator_is_numeric() 253 if (allow_errors) { in collator_is_numeric()
|
/PHP-8.1/Zend/ |
H A D | zend_operators.h | 90 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data); 146 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data) in is_numeric_string_ex() argument 151 return _is_numeric_string_ex(str, length, lval, dval, allow_errors, oflow_info, trailing_data); in is_numeric_string_ex() 154 …_numeric_string(const char *str, size_t length, zend_long *lval, double *dval, bool allow_errors) { in is_numeric_string() argument 155 return is_numeric_string_ex(str, length, lval, dval, allow_errors, NULL, NULL); in is_numeric_string()
|
H A D | zend_operators.c | 3165 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data) /* {{{ */ argument 3209 for (type = IS_LONG; !(digits >= MAX_LENGTH_OF_LONG && (dval || allow_errors)); digits++, ptr++) { 3245 } else if (!allow_errors && dp_or_e != -1) { 3260 if (!allow_errors) {
|
Completed in 26 milliseconds