Lines Matching refs:nextIndex
353 int32_t nextIndex = nextIndexFromNode(node); in addReset() local
354 if(nextIndex == 0) { break; } in addReset()
355 index = nextIndex; in addReset()
452 int32_t nextIndex = nextIndexFromNode(node); in addReset() local
455 index = insertNodeBetween(index, nextIndex, node, errorCode); in addReset()
458 insertNodeBetween(index, nextIndex, node, errorCode); in addReset()
623 int32_t nextIndex = nextIndexFromNode(node); in getSpecialResetPosition() local
624 if(nextIndex == 0) { break; } in getSpecialResetPosition()
625 int64_t nextNode = nodes.elementAti(nextIndex); in getSpecialResetPosition()
627 index = nextIndex; in getSpecialResetPosition()
880 int32_t nextIndex; in findOrInsertWeakNode() local
881 while((nextIndex = nextIndexFromNode(node)) != 0) { in findOrInsertWeakNode()
882 node = nodes.elementAti(nextIndex); in findOrInsertWeakNode()
892 return nextIndex; in findOrInsertWeakNode()
899 index = nextIndex; in findOrInsertWeakNode()
902 return insertNodeBetween(index, nextIndex, node, errorCode); in findOrInsertWeakNode()
918 int32_t nextIndex; in insertTailoredNodeAfter() local
919 while((nextIndex = nextIndexFromNode(node)) != 0) { in insertTailoredNodeAfter()
920 node = nodes.elementAti(nextIndex); in insertTailoredNodeAfter()
923 index = nextIndex; in insertTailoredNodeAfter()
926 return insertNodeBetween(index, nextIndex, node, errorCode); in insertTailoredNodeAfter()
930 CollationBuilder::insertNodeBetween(int32_t index, int32_t nextIndex, int64_t node, in insertNodeBetween() argument
935 U_ASSERT(nextIndexFromNode(nodes.elementAti(index)) == nextIndex); in insertNodeBetween()
938 node |= nodeFromPreviousIndex(index) | nodeFromNextIndex(nextIndex); in insertNodeBetween()
945 if(nextIndex != 0) { in insertNodeBetween()
946 node = nodes.elementAti(nextIndex); in insertNodeBetween()
947 nodes.setElementAt(changeNodePreviousIndex(node, newIndex), nextIndex); in insertNodeBetween()
1372 int32_t nextIndex = nextIndexFromNode(node); in makeTailoredCEs() local
1373 while(nextIndex != 0) { in makeTailoredCEs()
1374 i = nextIndex; in makeTailoredCEs()
1376 nextIndex = nextIndexFromNode(node); in makeTailoredCEs()
1397 int32_t tCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()
1440 int32_t sCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()
1486 int32_t pCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()