HomeSort by relevance Sort by last modified time
    Searched defs:TENS (Results 1 - 7 of 7) sorted by null

  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
IntegralToString.java 57 /** TENS[i] contains the tens digit of the number i, 0 <= i <= 99. */
58 private static final char[] TENS = {
71 /** Ones [i] contains the tens digit of the number i, 0 <= i <= 99. */
187 i < 10 ? stringOf('-', ONES[i]) : stringOf('-', TENS[i], ONES[i]);
196 i < 10 ? stringOf(ONES[i]) : stringOf(TENS[i], ONES[i]);
218 buf[--cursor] = TENS[r];
406 buf[--cursor] = TENS[r];
  /libcore/luni/src/main/java/java/lang/
IntegralToString.java 64 /** TENS[i] contains the tens digit of the number i, 0 <= i <= 99. */
65 private static final char[] TENS = {
78 /** Ones [i] contains the tens digit of the number i, 0 <= i <= 99. */
194 i < 10 ? stringOf('-', ONES[i]) : stringOf('-', TENS[i], ONES[i]);
203 i < 10 ? stringOf(ONES[i]) : stringOf(TENS[i], ONES[i]);
225 buf[--cursor] = TENS[r];
413 buf[--cursor] = TENS[r];
  /frameworks/base/core/tests/coretests/src/android/database/
NewDatabasePerformanceTests.java 88 result += TENS[(number / 10)];
    [all...]
DatabasePerformanceTests.java 131 result += TENS[(number / 10)];
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralSamples.java 186 private static final int[] TENS = {1, 10, 100, 1000, 10000, 100000, 1000000};
211 if (fract >= TENS[LIMIT_FRACTION_SAMPLES-1]) { // make sure that we always get the value
218 if (fract >= TENS[i]) {
221 toAddTo.add(new FixedDecimal(base + fract/(double)TENS[i], visibleFractions));
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 255 milliseconds