Searched refs:allow_errors (Results 1 – 4 of 4) sorted by relevance
/PHP-8.0/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 | 210 …collator_is_numeric( UChar *str, int32_t length, zend_long *lval, double *dval, bool allow_errors ) in collator_is_numeric() argument 252 if (!allow_errors) { in collator_is_numeric() 256 if (allow_errors) { in collator_is_numeric()
|
/PHP-8.0/Zend/ |
H A D | zend_operators.h | 90 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data); 129 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data) in is_numeric_string_ex() argument 134 return _is_numeric_string_ex(str, length, lval, dval, allow_errors, oflow_info, trailing_data); in is_numeric_string_ex() 137 …_numeric_string(const char *str, size_t length, zend_long *lval, double *dval, bool allow_errors) { in is_numeric_string() argument 138 return is_numeric_string_ex(str, length, lval, dval, allow_errors, NULL, NULL); in is_numeric_string()
|
H A D | zend_operators.c | 2991 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data) /* {{{ */ argument 3035 for (type = IS_LONG; !(digits >= MAX_LENGTH_OF_LONG && (dval || allow_errors)); digits++, ptr++) { 3071 } else if (!allow_errors && dp_or_e != -1) { 3086 if (!allow_errors) {
|
Completed in 19 milliseconds