HomeSort by relevance Sort by last modified time
    Searched defs:TENS (Results 1 - 5 of 5) 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...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 771 milliseconds