Searched refs:m_offsetInAnchor (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DPositionIterator.cpp48 return Position(m_anchorNode, m_offsetInAnchor);
59 m_offsetInAnchor = 0;
63 if (!m_anchorNode->hasChildNodes() && m_offsetInAnchor < lastOffsetForEditing(m_anchorNode))
64 m_offsetInAnchor = Position::uncheckedNextOffset(m_anchorNode, m_offsetInAnchor);
69 m_offsetInAnchor = 0;
82 m_offsetInAnchor = m_anchorNode->hasChildNodes() ? 0 : lastOffsetForEditing(m_anchorNode);
86 m_offsetInAnchor = 0;
93 m_offsetInAnchor = m_anchorNode->hasChildNodes()? 0: lastOffsetForEditing(m_anchorNode);
95 if (m_offsetInAnchor)
[all...]
H A DPositionIterator.h42 , m_offsetInAnchor(0)
49 , m_offsetInAnchor(m_nodeAfterPositionInAnchor ? 0 : pos.deprecatedEditingOffset())
58 int offsetInLeafNode() const { return m_offsetInAnchor; }
70 int m_offsetInAnchor; member in class:WebCore::PositionIterator

Completed in 57 milliseconds