Lines Matching refs:digit
1660 * Determines whether the specified code point is a digit character according to Java.
1661 * True for characters with general category "Nd" (decimal digit numbers).
1673 * @return TRUE if the code point is a digit character according to Character.isDigit()
1703 * (letter or digit) according to Java.
1705 * "L" (letters) and "Nd" (decimal digit numbers).
1723 * Determines whether the specified code point is a hexadecimal digit.
1725 * True for characters with general category "Nd" (decimal digit numbers)
1738 * @return TRUE if the code point is a hexadecimal digit
2133 * Returns the decimal digit value of a decimal digit character.
2134 * Such characters have the general category "Nd" (decimal digit numbers)
2137 * Unlike ICU releases before 2.6, no digit values are returned for any
2148 * @param c the code point for which to get the decimal digit value
2149 * @return the decimal digit value of c,
2150 * or -1 if c is not a decimal digit character
2669 * Returns the decimal digit value of the code point in the
2673 * value of <code>c</code> is not a valid digit in the specified
2674 * radix, <code>-1</code> is returned. A character is a valid digit
2677 * <li>The character has a decimal digit value.
2678 * Such characters have the general category "Nd" (decimal digit numbers)
2680 * In this case the value is the character's decimal digit value.</li>
2692 * Same as java.lang.Character.digit().
2710 * Determines the character representation for a specific digit in
2712 * valid radix, or the value of <code>digit</code> is not a valid
2713 * digit in the specified radix, the null character
2718 * The <code>digit</code> argument is valid if
2719 * <code>0 <= digit < radix</code>.
2721 * If the digit is less than 10, then
2722 * <code>'0' + digit</code> is returned. Otherwise, the value
2723 * <code>'a' + digit - 10</code> is returned.
2727 * @param digit the number to convert to a character.
2729 * @return the <code>char</code> representation of the specified digit
2738 u_forDigit(int32_t digit, int8_t radix);