Lines Matching refs:digit
90 * - digit: u_isdigit(c) or u_charType(c)==U_DECIMAL_DIGIT_NUMBER
2003 * Determines whether the specified code point is a digit character according to Java.
2004 * True for characters with general category "Nd" (decimal digit numbers).
2016 * @return TRUE if the code point is a digit character according to Character.isDigit()
2046 * (letter or digit) according to Java.
2048 * "L" (letters) and "Nd" (decimal digit numbers).
2066 * Determines whether the specified code point is a hexadecimal digit.
2068 * True for characters with general category "Nd" (decimal digit numbers)
2081 * @return TRUE if the code point is a hexadecimal digit
2482 * Returns the decimal digit value of a decimal digit character.
2483 * Such characters have the general category "Nd" (decimal digit numbers)
2486 * Unlike ICU releases before 2.6, no digit values are returned for any
2497 * @param c the code point for which to get the decimal digit value
2498 * @return the decimal digit value of c,
2499 * or -1 if c is not a decimal digit character
3035 * Returns the decimal digit value of the code point in the
3039 * value of <code>c</code> is not a valid digit in the specified
3040 * radix, <code>-1</code> is returned. A character is a valid digit
3043 * <li>The character has a decimal digit value.
3044 * Such characters have the general category "Nd" (decimal digit numbers)
3046 * In this case the value is the character's decimal digit value.</li>
3058 * Same as java.lang.Character.digit().
3076 * Determines the character representation for a specific digit in
3078 * valid radix, or the value of <code>digit</code> is not a valid
3079 * digit in the specified radix, the null character
3084 * The <code>digit</code> argument is valid if
3085 * <code>0 <= digit < radix</code>.
3087 * If the digit is less than 10, then
3088 * <code>'0' + digit</code> is returned. Otherwise, the value
3089 * <code>'a' + digit - 10</code> is returned.
3093 * @param digit the number to convert to a character.
3095 * @return the <code>char</code> representation of the specified digit
3104 u_forDigit(int32_t digit, int8_t radix);