OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TENS
(Results
1 - 4
of
4
) sorted by null
/dalvik/libcore/luni/src/main/java/java/lang/
Integer.java
75
/**
TENS
[i] contains the
tens
digit of the number i, 0 <= i <= 99. */
76
static final char[]
TENS
= {
89
/** Ones [i] contains the
tens
digit of the number i, 0 <= i <= 99. */
552
: stringOf('-',
TENS
[i], ONES[i]);
561
i < 10 ? stringOf(ONES[i]) : stringOf(
TENS
[i], ONES[i]);
580
buf[--cursor] =
TENS
[r];
Long.java
567
buf[--cursor] = Integer.
TENS
[r];
/frameworks/base/core/tests/coretests/src/android/database/
DatabasePerformanceTests.java
130
result +=
TENS
[(number / 10)];
[
all
...]
NewDatabasePerformanceTests.java
89
result +=
TENS
[(number / 10)];
1231
public static final String[]
TENS
=
Completed in 25 milliseconds