Home
last modified time | relevance | path

Searched refs:tlen (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/test/java/text/Collator/
DMonkeyTest.java84 int tlen = checkValue((r.nextInt() - source.length()) % source.length()); in TestCollationKey() local
86 String subt = source.substring((t > tlen ? tlen : t), (t >= tlen ? t : tlen)); in TestCollationKey()
127 int tlen = checkValue((r.nextInt() - source.length()) % source.length()); in TestCompare() local
129 String subt = source.substring((t > tlen ? tlen : t), (t >= tlen ? t : tlen)); in TestCompare()
/libcore/ojluni/src/main/java/java/util/
DComparableTimSort.java125 int tlen = (len < 2 * INITIAL_TMP_STORAGE_LENGTH) ? in ComparableTimSort() local
127 if (work == null || workLen < tlen || workBase + tlen > work.length) { in ComparableTimSort()
128 tmp = new Object[tlen]; in ComparableTimSort()
130 tmpLen = tlen; in ComparableTimSort()
DTimSort.java152 int tlen = (len < 2 * INITIAL_TMP_STORAGE_LENGTH) ? in TimSort() local
154 if (work == null || workLen < tlen || workBase + tlen > work.length) { in TimSort()
157 (a.getClass().getComponentType(), tlen); in TimSort()
160 tmpLen = tlen; in TimSort()