Home
last modified time | relevance | path

Searched refs:digit (Results 26 – 50 of 70) sorted by relevance

123

/PHP-5.5/ext/pcre/tests/
H A Dbug37911.phpt40 Warning: preg_replace_callback(): Compilation failed: group name must start with a non-digit at off…
H A Dpreg_match_all_edit_basic.phpt13 …PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER, -10)); //finds any digit that's not 4 10 di…
H A Dpreg_match_all_basic.phpt10 …ring, $match1, PREG_OFFSET_CAPTURE|PREG_PATTERN_ORDER, -10)); //finds any digit that's not 4 10 di…
/PHP-5.5/ext/ereg/tests/
H A Dereg_basic_002.phpt65 --> Pattern: '^[[:digit:]]{5}'; string: '0123456789'
69 --> Pattern: '[[:digit:]]{5}$'; string: '0123456789'
H A Deregi_basic_002.phpt65 --> Pattern: '^[[:digit:]]{5}'; string: '0123456789'
69 --> Pattern: '[[:digit:]]{5}$'; string: '0123456789'
H A Dereg_basic_001.phpt120 --> Pattern: '^[[:digit:]]{5}'; string: '0123456789'
128 --> Pattern: '[[:digit:]]{5}$'; string: '0123456789'
H A Deregi_basic_001.phpt120 --> Pattern: '^[[:digit:]]{5}'; string: '0123456789'
128 --> Pattern: '[[:digit:]]{5}$'; string: '0123456789'
H A Dspliti_basic_001.phpt112 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
122 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
H A Dsplit_basic_001.phpt112 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
122 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
H A Dspliti_basic_002.phpt190 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
202 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
H A Dsplit_basic_002.phpt190 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
202 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
H A Dereg_replace_basic_001.phpt67 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
71 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
H A Deregi_replace_basic_001.phpt67 --> Pattern: '^[[:digit:]]{5}'; match: '0123456789'
71 --> Pattern: '[[:digit:]]{5}$'; match: '0123456789'
/PHP-5.5/Zend/
H A Dzend_operators.c144 const char *digit = number; in zend_string_to_double() local
150 while (digit < end) { in zend_string_to_double()
151 if ((*digit <= '9' && *digit >= '0')) { in zend_string_to_double()
153 result += *digit - '0'; in zend_string_to_double()
154 } else if (*digit == '.') { in zend_string_to_double()
155 digit++; in zend_string_to_double()
158 exponent = (double) atoi(digit+1); in zend_string_to_double()
164 digit++; in zend_string_to_double()
167 while (digit < end) { in zend_string_to_double()
168 if ((*digit <= '9' && *digit >= '0')) { in zend_string_to_double()
[all …]
/PHP-5.5/ext/ctype/tests/
H A Dctype_xdigit_error.phpt8 * Description: Checks for character(s) representing a hexadecimal digit
H A Dctype_digit_variation3.phpt14 * which are considered valid decimal digit only strings
H A Dctype_xdigit_variation4.phpt8 * Description: Checks for character(s) representing a hexadecimal digit
H A Dctype_xdigit_variation1.phpt8 * Description: Checks for character(s) representing a hexadecimal digit
/PHP-5.5/ext/date/lib/
H A Dparse_date.re1887 case 'd': /* two digit day, with leading zero */
1888 case 'j': /* two digit day, without leading zero */
1908 case 'm': /* two digit month, with leading zero */
1924 case 'y': /* two digit year */
1934 case 'Y': /* four digit year */
1940 case 'g': /* two digit hour, with leading zero */
1941 case 'h': /* two digit hour, without leading zero */
1950 case 'G': /* two digit hour, with leading zero */
1967 case 'i': /* two digit minute, with leading zero */
1981 case 's': /* two digit second, with leading zero */
[all …]
/PHP-5.5/ext/mbstring/libmbfl/mbfl/
H A Dmbfilter.c2681 int digit; member
2754 pc->digit = 1; in collector_decode_htmlnumericentity()
2773 pc->digit++; in collector_decode_htmlnumericentity()
2799 n = pc->digit; in collector_decode_htmlnumericentity()
2819 pc->digit = 1; in collector_decode_htmlnumericentity()
2823 pc->digit = 1; in collector_decode_htmlnumericentity()
2827 pc->digit = 1; in collector_decode_htmlnumericentity()
2855 pc->digit++; in collector_decode_htmlnumericentity()
2882 n = pc->digit; in collector_decode_htmlnumericentity()
3025 pc->digit = 0; in mbfl_filt_decode_htmlnumericentity_flush()
[all …]
/PHP-5.5/ext/mbstring/tests/
H A Dmb_ereg_variation5.phpt26 $regex = b'^.*?[[:blank:]]?[[:punct:][:digit:]]+\.?$';
H A Dmb_ereg_variation4.phpt31 b'[[:digit:]]+',
H A Dmb_ereg_variation3.phpt28 b'234' => b'[[:digit:]]+', /*5*/
/PHP-5.5/ext/standard/tests/http/
H A Dserver.inc63 if (preg_match(b'#^Content-Length\s*:\s*([[:digit:]]+)\s*$#i', $line, $matches)) {
/PHP-5.5/ext/standard/
H A Dmath.c796 long num = 0, digit, onum; in _php_math_basetolong() local
809 digit = (c >= '0' && c <= '9') ? c - '0' in _php_math_basetolong()
814 if (digit >= base) { in _php_math_basetolong()
819 num = num * base + digit; in _php_math_basetolong()

Completed in 42 milliseconds

123