Home | History | Annotate | Download | only in editing

Lines Matching refs:positionOffset

288     unsigned positionOffset = static_cast<unsigned>(position.offsetInContainerNode());
289 if (positionOffset > offset && positionOffset < offset + oldLength)
292 // Adjust the offset if the position is after or at the end of the deleted contents (positionOffset >= offset + oldLength)
295 if ((positionOffset > offset + oldLength) || (positionOffset == offset + oldLength && (type == EndPointIsStart || oldLength)))
296 position.moveToOffset(positionOffset - oldLength + newLength);