HomeSort by relevance Sort by last modified time
    Searched defs:m_anchorNode (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/dom/
PositionIterator.h 40 : m_anchorNode(0)
47 : m_anchorNode(pos.anchorNode())
48 , m_nodeAfterPositionInAnchor(m_anchorNode->childNode(pos.deprecatedEditingOffset()))
57 Node* node() const { return m_anchorNode; }
67 Node* m_anchorNode;
68 Node* m_nodeAfterPositionInAnchor; // If this is non-null, m_nodeAfterPositionInAnchor->parentNode() == m_anchorNode;
Position.h 81 void clear() { m_anchorNode.clear(); m_offset = 0; m_anchorType = PositionIsOffsetInAnchor; m_isLegacyEditingPosition = false; }
106 Node* anchorNode() const { return m_anchorNode.get(); }
111 Node* node() const { return m_anchorNode.get(); }
118 bool isNull() const { return !m_anchorNode; }
119 bool isNotNull() const { return m_anchorNode; }
179 RefPtr<Node> m_anchorNode;
180 // m_offset can be the offset inside m_anchorNode, or if editingIgnoresContent(m_anchorNode)

Completed in 88 milliseconds