Home
last modified time | relevance | path

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

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DMutableCodePointTrie.java1220 int i2Length = 0; in compactIndex() local
1324 index2[i2Length++] = (char)i3; in compactIndex()
1326 assert(i2Length == index2Capacity); in compactIndex()
1344 for (int i = 0; i < i2Length; i += blockLength) { in compactIndex()
1346 if ((i2Length - i) >= blockLength) { in compactIndex()
1352 blockLength = i2Length - i; in compactIndex()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DMutableCodePointTrie.java1213 int i2Length = 0; in compactIndex() local
1317 index2[i2Length++] = (char)i3; in compactIndex()
1319 assert(i2Length == index2Capacity); in compactIndex()
1337 for (int i = 0; i < i2Length; i += blockLength) { in compactIndex()
1339 if ((i2Length - i) >= blockLength) { in compactIndex()
1345 blockLength = i2Length - i; in compactIndex()
/external/icu/icu4c/source/common/
Dumutablecptrie.cpp1318 int32_t i2Length = 0; in compactIndex() local
1422 index2[i2Length++] = i3; in compactIndex()
1424 U_ASSERT(i2Length == index2Capacity); in compactIndex()
1442 for (int32_t i = 0; i < i2Length; i += blockLength) { in compactIndex()
1444 if ((i2Length - i) >= blockLength) { in compactIndex()
1450 blockLength = i2Length - i; in compactIndex()