Home
last modified time | relevance | path

Searched refs:appendDigit (Results 1 – 15 of 15) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dnumbertest_decimalquantity.cpp108 fq.appendDigit(5, 0, true); in testSwitchStorage()
122 fq.appendDigit(1, 0, true); in testAppend()
125 fq.appendDigit(2, 0, true); in testAppend()
128 fq.appendDigit(3, 1, true); in testAppend()
131 fq.appendDigit(0, 1, true); in testAppend()
134 fq.appendDigit(4, 0, true); in testAppend()
137 fq.appendDigit(0, 0, true); in testAppend()
140 fq.appendDigit(5, 0, false); in testAppend()
143 fq.appendDigit(6, 0, false); in testAppend()
146 fq.appendDigit(7, 3, false); in testAppend()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
DDecimalQuantityTest.java296 fq.appendDigit((byte) 5, 0, true); in testSwitchStorage()
310 fq.appendDigit((byte) 1, 0, true); in testAppend()
313 fq.appendDigit((byte) 2, 0, true); in testAppend()
316 fq.appendDigit((byte) 3, 1, true); in testAppend()
319 fq.appendDigit((byte) 0, 1, true); in testAppend()
322 fq.appendDigit((byte) 4, 0, true); in testAppend()
325 fq.appendDigit((byte) 0, 0, true); in testAppend()
328 fq.appendDigit((byte) 5, 0, false); in testAppend()
331 fq.appendDigit((byte) 6, 0, false); in testAppend()
334 fq.appendDigit((byte) 7, 3, false); in testAppend()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
DDecimalQuantityTest.java299 fq.appendDigit((byte) 5, 0, true); in testSwitchStorage()
313 fq.appendDigit((byte) 1, 0, true); in testAppend()
316 fq.appendDigit((byte) 2, 0, true); in testAppend()
319 fq.appendDigit((byte) 3, 1, true); in testAppend()
322 fq.appendDigit((byte) 0, 1, true); in testAppend()
325 fq.appendDigit((byte) 4, 0, true); in testAppend()
328 fq.appendDigit((byte) 0, 0, true); in testAppend()
331 fq.appendDigit((byte) 5, 0, false); in testAppend()
334 fq.appendDigit((byte) 6, 0, false); in testAppend()
337 fq.appendDigit((byte) 7, 3, false); in testAppend()
[all …]
/external/llvm/lib/Support/
DScaledNumber.cpp138 static void appendDigit(std::string &Str, unsigned D) { in appendDigit() function
145 appendDigit(Str, N % 10); in appendNumber()
245 appendDigit(Str, 0); in toString()
273 appendDigit(Str, Below0 >> 60); in toString()
/external/icu/icu4c/source/i18n/
Dnumber_decimalquantity.h158 void appendDigit(int8_t value, int32_t leadingZeros, bool appendAsInteger);
Dnumber_patternstring.cpp331 result.rounding.appendDigit(static_cast<int8_t>(state.peek() - u'0'), 0, true); in consumeIntegerFormat()
394 … .appendDigit(static_cast<int8_t>(state.peek() - u'0'), zeroCounter, false); in consumeFractionFormat()
Dnumber_decimalquantity.cpp658 void DecimalQuantity::appendDigit(int8_t value, int32_t leadingZeros, bool appendAsInteger) { in appendDigit() function in DecimalQuantity
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/
DPatternStringParser.java417 result.rounding.appendDigit((byte) (state.peek() - '0'), 0, true); in consumeIntegerFormat()
472 result.rounding.appendDigit((byte) (state.peek() - '0'), zeroCounter, false); in consumeFractionFormat()
DParse.java372 void appendDigit(byte digit, DigitType type) { in appendDigit() method in Parse.StateItem
387 fq.appendDigit(digit, trailingZeros, false); in appendDigit()
390 fq.appendDigit(digit, 0, true); in appendDigit()
1509 next.appendDigit(digit, type);
DDecimalQuantity_AbstractBCD.java808 public void appendDigit(byte value, int leadingZeros, boolean appendAsInteger) { in appendDigit() method in DecimalQuantity_AbstractBCD
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
DPatternStringParser.java415 result.rounding.appendDigit((byte) (state.peek() - '0'), 0, true); in consumeIntegerFormat()
470 result.rounding.appendDigit((byte) (state.peek() - '0'), zeroCounter, false); in consumeFractionFormat()
DParse.java370 void appendDigit(byte digit, DigitType type) { in appendDigit() method in Parse.StateItem
385 fq.appendDigit(digit, trailingZeros, false); in appendDigit()
388 fq.appendDigit(digit, 0, true); in appendDigit()
1507 next.appendDigit(digit, type);
DDecimalQuantity_AbstractBCD.java806 public void appendDigit(byte value, int leadingZeros, boolean appendAsInteger) { in appendDigit() method in DecimalQuantity_AbstractBCD
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNFSubstitution.java1335 fq.appendDigit((byte) digit, leadingZeros, false); in doParse()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DNFSubstitution.java1336 fq.appendDigit((byte) digit, leadingZeros, false); in doParse()