Home | History | Annotate | Download | only in unicode

Lines Matching refs:digit

90  * - digit:     u_isdigit(c) or u_charType(c)==U_DECIMAL_DIGIT_NUMBER
2152 * Determines whether the specified code point is a digit character according to Java.
2153 * True for characters with general category "Nd" (decimal digit numbers).
2165 * @return TRUE if the code point is a digit character according to Character.isDigit()
2195 * (letter or digit) according to Java.
2197 * "L" (letters) and "Nd" (decimal digit numbers).
2215 * Determines whether the specified code point is a hexadecimal digit.
2217 * True for characters with general category "Nd" (decimal digit numbers)
2230 * @return TRUE if the code point is a hexadecimal digit
2650 * Returns the decimal digit value of a decimal digit character.
2651 * Such characters have the general category "Nd" (decimal digit numbers)
2654 * Unlike ICU releases before 2.6, no digit values are returned for any
2665 * @param c the code point for which to get the decimal digit value
2666 * @return the decimal digit value of c,
2667 * or -1 if c is not a decimal digit character
3198 * Returns the decimal digit value of the code point in the
3202 * value of <code>c</code> is not a valid digit in the specified
3203 * radix, <code>-1</code> is returned. A character is a valid digit
3206 * <li>The character has a decimal digit value.
3207 * Such characters have the general category "Nd" (decimal digit numbers)
3209 * In this case the value is the character's decimal digit value.</li>
3221 * Same as java.lang.Character.digit().
3239 * Determines the character representation for a specific digit in
3241 * valid radix, or the value of <code>digit</code> is not a valid
3242 * digit in the specified radix, the null character
3247 * The <code>digit</code> argument is valid if
3248 * <code>0 <= digit < radix</code>.
3250 * If the digit is less than 10, then
3251 * <code>'0' + digit</code> is returned. Otherwise, the value
3252 * <code>'a' + digit - 10</code> is returned.
3256 * @param digit the number to convert to a character.
3258 * @return the <code>char</code> representation of the specified digit
3267 u_forDigit(int32_t digit, int8_t radix);