Lines Matching refs:nextIndex
362 int32_t nextIndex = nextIndexFromNode(node); in addReset() local
363 if(nextIndex == 0) { break; } in addReset()
364 index = nextIndex; in addReset()
629 int32_t nextIndex = nextIndexFromNode(node); in getSpecialResetPosition() local
630 if(nextIndex == 0) { break; } in getSpecialResetPosition()
631 int64_t nextNode = nodes.elementAti(nextIndex); in getSpecialResetPosition()
633 index = nextIndex; in getSpecialResetPosition()
899 int32_t nextIndex = nextIndexFromNode(node); in findOrInsertWeakNode() local
901 index = insertNodeBetween(index, nextIndex, node, errorCode); in findOrInsertWeakNode()
903 insertNodeBetween(index, nextIndex, commonNode, errorCode); in findOrInsertWeakNode()
913 int32_t nextIndex; in findOrInsertWeakNode() local
914 while((nextIndex = nextIndexFromNode(node)) != 0) { in findOrInsertWeakNode()
915 node = nodes.elementAti(nextIndex); in findOrInsertWeakNode()
925 return nextIndex; in findOrInsertWeakNode()
932 index = nextIndex; in findOrInsertWeakNode()
935 return insertNodeBetween(index, nextIndex, node, errorCode); in findOrInsertWeakNode()
951 int32_t nextIndex; in insertTailoredNodeAfter() local
952 while((nextIndex = nextIndexFromNode(node)) != 0) { in insertTailoredNodeAfter()
953 node = nodes.elementAti(nextIndex); in insertTailoredNodeAfter()
956 index = nextIndex; in insertTailoredNodeAfter()
959 return insertNodeBetween(index, nextIndex, node, errorCode); in insertTailoredNodeAfter()
963 CollationBuilder::insertNodeBetween(int32_t index, int32_t nextIndex, int64_t node, in insertNodeBetween() argument
968 U_ASSERT(nextIndexFromNode(nodes.elementAti(index)) == nextIndex); in insertNodeBetween()
971 node |= nodeFromPreviousIndex(index) | nodeFromNextIndex(nextIndex); in insertNodeBetween()
978 if(nextIndex != 0) { in insertNodeBetween()
979 node = nodes.elementAti(nextIndex); in insertNodeBetween()
980 nodes.setElementAt(changeNodePreviousIndex(node, newIndex), nextIndex); in insertNodeBetween()
1409 int32_t nextIndex = nextIndexFromNode(node); in makeTailoredCEs() local
1410 while(nextIndex != 0) { in makeTailoredCEs()
1411 i = nextIndex; in makeTailoredCEs()
1413 nextIndex = nextIndexFromNode(node); in makeTailoredCEs()
1434 int32_t tCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()
1477 int32_t sCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()
1528 int32_t pCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()