Lines Matching refs:digit
347 "f[0-9]b", first matches "f", then a digit and then "b".
514 |/\d| \d \d digit: [0-9]
515 |/\D| \D \D non-digit: [^0-9]
516 |/\x| \x \x hex digit: [0-9A-Fa-f]
517 |/\X| \X \X non-hex digit: [^0-9A-Fa-f]
518 |/\o| \o \o octal digit: [0-7]
519 |/\O| \O \O non-octal digit: [^0-7]
1032 \d digit: [0-9] */\d*
1033 \D non-digit: [^0-9] */\D*
1034 \x hex digit: [0-9A-Fa-f] */\x*
1035 \X non-hex digit: [^0-9A-Fa-f] */\X*
1036 \o octal digit: [0-7] */\o*
1037 \O non-octal digit: [^0-7] */\O*
1125 "[0-9]" matches any decimal digit. If the starting character exceeds
1138 *[:digit:]* [:digit:] decimal digits '0' to '9'
1241 followed by a non-digit.
1243 Numbers below 0o40 must be followed by a non-octal digit or a
1244 non-digit.