Searched defs:digit (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DDecimalFormatSymbols.java271 * Gets the character used for a digit in a pattern.
273 * @return the character used for a digit in a pattern
276 return digit;
280 * Sets the character used for a digit in a pattern.
282 * @param digit the character used for a digit in a pattern
284 public void setDigit(char digit) { argument
285 this.digit = digit;
606 digit
1019 private char digit; field in class:DecimalFormatSymbols
[all...]
/libcore/luni/src/main/native/
H A Dcbigint.cpp226 simpleAppendDecimalDigitHighPrecision (uint64_t * arg1, int32_t length, uint64_t digit) argument
228 /* assumes digit is less than 32 bits */
232 digit <<= 32;
236 digit = HIGH_IN_U64 (digit) + TIMES_TEN (arg);
237 LOW_U32_FROM_PTR (arg1 + index) = LOW_U32_FROM_VAR (digit);
240 digit = HIGH_IN_U64 (digit) + TIMES_TEN (arg);
241 HIGH_U32_FROM_PTR (arg1 + index) = LOW_U32_FROM_VAR (digit);
245 return HIGH_U32_FROM_VAR (digit);
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DCharacter.java42 * a character's category (lowercase letter, digit, etc.) and for converting
130 * {@code digit} method, the {@code forDigit} method, and the
133 * @see Character#digit(char, int)
144 * {@code digit} method, the {@code forDigit} method, and the
147 * @see Character#digit(char, int)
5633 * Determines if the specified character is a digit.
5635 * A character is a digit if its general category type, provided
5661 * @return {@code true} if the character is a digit;
5663 * @see Character#digit(char, int)
5672 * Determines if the specified character (Unicode code point) is a digit
6614 public static int digit(char ch, int radix) { method in class:Character
6666 public static int digit(int codePoint, int radix) { method in class:Character
7154 forDigit(int digit, int radix) argument
[all...]

Completed in 812 milliseconds