Home
last modified time | relevance | path

Searched refs:rootPrimaryIndexes (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationBuilder.java50 rootPrimaryIndexes = new UVector32(); in CollationBuilder()
586 int[] rootPrimaryIndexes, int length, long[] nodes, long p) { in binarySearchForRootPrimaryNode() argument
592 long node = nodes[rootPrimaryIndexes[i]]; in binarySearchForRootPrimaryNode()
613 rootPrimaryIndexes.getBuffer(), rootPrimaryIndexes.size(), nodes.getBuffer(), p); in findOrInsertNodeForPrimary()
615 return rootPrimaryIndexes.elementAti(rootIndex); in findOrInsertNodeForPrimary()
620 rootPrimaryIndexes.insertElementAt(index, ~rootIndex); in findOrInsertNodeForPrimary()
1138 for(int rpi = 0; rpi < rootPrimaryIndexes.size(); ++rpi) {
1139 int i = rootPrimaryIndexes.elementAti(rpi);
1515 private UVector32 rootPrimaryIndexes; field in CollationBuilder
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationBuilder.java54 rootPrimaryIndexes = new UVector32(); in CollationBuilder()
590 int[] rootPrimaryIndexes, int length, long[] nodes, long p) { in binarySearchForRootPrimaryNode() argument
596 long node = nodes[rootPrimaryIndexes[i]]; in binarySearchForRootPrimaryNode()
617 rootPrimaryIndexes.getBuffer(), rootPrimaryIndexes.size(), nodes.getBuffer(), p); in findOrInsertNodeForPrimary()
619 return rootPrimaryIndexes.elementAti(rootIndex); in findOrInsertNodeForPrimary()
624 rootPrimaryIndexes.insertElementAt(index, ~rootIndex); in findOrInsertNodeForPrimary()
1142 for(int rpi = 0; rpi < rootPrimaryIndexes.size(); ++rpi) {
1143 int i = rootPrimaryIndexes.elementAti(rpi);
1519 private UVector32 rootPrimaryIndexes; field in CollationBuilder
/external/icu/icu4c/source/i18n/
Dcollationbuilder.cpp212 rootPrimaryIndexes(errorCode), nodes(errorCode) { in CollationBuilder()
828 binarySearchForRootPrimaryNode(const int32_t *rootPrimaryIndexes, int32_t length, in binarySearchForRootPrimaryNode() argument
835 int64_t node = nodes[rootPrimaryIndexes[i]]; in binarySearchForRootPrimaryNode()
860 rootPrimaryIndexes.getBuffer(), rootPrimaryIndexes.size(), nodes.getBuffer(), p); in findOrInsertNodeForPrimary()
862 return rootPrimaryIndexes.elementAti(rootIndex); in findOrInsertNodeForPrimary()
867 rootPrimaryIndexes.insertElementAt(index, ~rootIndex, errorCode); in findOrInsertNodeForPrimary()
1396 for(int32_t rpi = 0; rpi < rootPrimaryIndexes.size(); ++rpi) { in makeTailoredCEs()
1397 int32_t i = rootPrimaryIndexes.elementAti(rpi); in makeTailoredCEs()
Dcollationbuilder.h320 UVector32 rootPrimaryIndexes; variable