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()
630 int32_t nextIndex = nextIndexFromNode(node); in getSpecialResetPosition() local
631 if(nextIndex == 0) { break; } in getSpecialResetPosition()
632 int64_t nextNode = nodes.elementAti(nextIndex); in getSpecialResetPosition()
634 index = nextIndex; in getSpecialResetPosition()
900 int32_t nextIndex = nextIndexFromNode(node); in findOrInsertWeakNode() local
902 index = insertNodeBetween(index, nextIndex, node, errorCode); in findOrInsertWeakNode()
904 insertNodeBetween(index, nextIndex, commonNode, errorCode); in findOrInsertWeakNode()
914 int32_t nextIndex; in findOrInsertWeakNode() local
915 while((nextIndex = nextIndexFromNode(node)) != 0) { in findOrInsertWeakNode()
916 node = nodes.elementAti(nextIndex); in findOrInsertWeakNode()
926 return nextIndex; in findOrInsertWeakNode()
933 index = nextIndex; in findOrInsertWeakNode()
936 return insertNodeBetween(index, nextIndex, node, errorCode); in findOrInsertWeakNode()
952 int32_t nextIndex; in insertTailoredNodeAfter() local
953 while((nextIndex = nextIndexFromNode(node)) != 0) { in insertTailoredNodeAfter()
954 node = nodes.elementAti(nextIndex); in insertTailoredNodeAfter()
957 index = nextIndex; in insertTailoredNodeAfter()
960 return insertNodeBetween(index, nextIndex, node, errorCode); in insertTailoredNodeAfter()
964 CollationBuilder::insertNodeBetween(int32_t index, int32_t nextIndex, int64_t node, in insertNodeBetween() argument
969 U_ASSERT(nextIndexFromNode(nodes.elementAti(index)) == nextIndex); in insertNodeBetween()
972 node |= nodeFromPreviousIndex(index) | nodeFromNextIndex(nextIndex); in insertNodeBetween()
979 if(nextIndex != 0) { in insertNodeBetween()
980 node = nodes.elementAti(nextIndex); in insertNodeBetween()
981 nodes.setElementAt(changeNodePreviousIndex(node, newIndex), nextIndex); in insertNodeBetween()
1410 int32_t nextIndex = nextIndexFromNode(node); in makeTailoredCEs() local
1411 while(nextIndex != 0) { in makeTailoredCEs()
1412 i = nextIndex; in makeTailoredCEs()
1414 nextIndex = nextIndexFromNode(node); in makeTailoredCEs()
1435 int32_t tCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()
1478 int32_t sCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()
1529 int32_t pCount = countTailoredNodes(nodesArray, nextIndex, in makeTailoredCEs()