HomeSort by relevance Sort by last modified time
    Searched refs:ONES (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/java/lang/
IntegralToString.java 78 /** Ones [i] contains the tens digit of the number i, 0 <= i <= 99. */
79 private static final char[] ONES = {
187 i < 10 ? stringOf('-', ONES[i]) : stringOf('-', TENS[i], ONES[i]);
196 i < 10 ? stringOf(ONES[i]) : stringOf(TENS[i], ONES[i]);
217 buf[--cursor] = ONES[r];
405 buf[--cursor] = ONES[r];
  /frameworks/base/core/tests/coretests/src/android/database/
DatabasePerformanceTests.java 123 result += ONES[(number / 100)] + " hundred";
137 result += ONES[number];
    [all...]
NewDatabasePerformanceTests.java 82 result += ONES[(number / 100)] + " hundred";
96 result += ONES[number];
1225 public static final String[] ONES =

Completed in 946 milliseconds