Searched refs:m_offsetInAnchor (Results 1 – 2 of 2) sorted by relevance
49 return createLegacyEditingPosition(m_anchorNode, m_offsetInAnchor); in operator Position()60 m_offsetInAnchor = 0; in increment()64 if (!m_anchorNode->hasChildNodes() && m_offsetInAnchor < lastOffsetForEditing(m_anchorNode)) in increment()65 m_offsetInAnchor = Position::uncheckedNextOffset(m_anchorNode, m_offsetInAnchor); in increment()70 m_offsetInAnchor = 0; in increment()83 … m_offsetInAnchor = m_anchorNode->hasChildNodes() ? 0 : lastOffsetForEditing(m_anchorNode); in decrement()87 m_offsetInAnchor = 0; in decrement()94 m_offsetInAnchor = m_anchorNode->hasChildNodes()? 0: lastOffsetForEditing(m_anchorNode); in decrement()96 if (m_offsetInAnchor) in decrement()97 m_offsetInAnchor = Position::uncheckedPreviousOffset(m_anchorNode, m_offsetInAnchor); in decrement()[all …]
42 , m_offsetInAnchor(0) in PositionIterator()49 , m_offsetInAnchor(m_nodeAfterPositionInAnchor ? 0 : pos.deprecatedEditingOffset()) in PositionIterator()58 int offsetInLeafNode() const { return m_offsetInAnchor; } in offsetInLeafNode()69 int m_offsetInAnchor; variable