Searched refs:allow_errors (Results 1 – 4 of 4) sorted by relevance
/PHP-8.3/ext/intl/collator/ |
H A D | collator_is_numeric.h | 23 …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.3/Zend/ |
H A D | zend_operators.h | 106 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data); 162 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data) in is_numeric_string_ex() argument 167 return _is_numeric_string_ex(str, length, lval, dval, allow_errors, oflow_info, trailing_data); in is_numeric_string_ex() 170 …_numeric_string(const char *str, size_t length, zend_long *lval, double *dval, bool allow_errors) { in is_numeric_string() argument 171 return is_numeric_string_ex(str, length, lval, dval, allow_errors, NULL, NULL); in is_numeric_string()
|
H A D | zend_operators.c | 3508 double *dval, bool allow_errors, int *oflow_info, bool *trailing_data) /* {{{ */ argument 3552 for (type = IS_LONG; !(digits >= MAX_LENGTH_OF_LONG && (dval || allow_errors)); digits++, ptr++) { 3588 } else if (!allow_errors && dp_or_e != -1) { 3603 if (!allow_errors) {
|
Completed in 23 milliseconds