Home
last modified time | relevance | path

Searched refs:m_offsetInAnchor (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/dom/
DPositionIterator.cpp48 return Position(m_anchorNode, m_offsetInAnchor); in operator Position()
59 m_offsetInAnchor = 0; in increment()
63 if (!m_anchorNode->hasChildNodes() && m_offsetInAnchor < lastOffsetForEditing(m_anchorNode)) in increment()
64 m_offsetInAnchor = Position::uncheckedNextOffset(m_anchorNode, m_offsetInAnchor); in increment()
69 m_offsetInAnchor = 0; in increment()
82m_offsetInAnchor = m_anchorNode->hasChildNodes() ? 0 : lastOffsetForEditing(m_anchorNode); in decrement()
86 m_offsetInAnchor = 0; in decrement()
93 m_offsetInAnchor = m_anchorNode->hasChildNodes()? 0: lastOffsetForEditing(m_anchorNode); in decrement()
95 if (m_offsetInAnchor) in decrement()
96 m_offsetInAnchor = Position::uncheckedPreviousOffset(m_anchorNode, m_offsetInAnchor); in decrement()
[all …]
DPositionIterator.h42 , m_offsetInAnchor(0) in PositionIterator()
49 , m_offsetInAnchor(m_nodeAfterPositionInAnchor ? 0 : pos.deprecatedEditingOffset()) in PositionIterator()
58 int offsetInLeafNode() const { return m_offsetInAnchor; } in offsetInLeafNode()
70 int m_offsetInAnchor; variable
/external/webkit/Source/WebCore/
DChangeLog-2009-06-163481 Rename m_offset to m_offsetInAnchor (since it's interpreted relative to m_anchorNode)