Home | History | Annotate | Download | only in dom

Lines Matching refs:m_anchorNode

95     void clear() { m_anchorNode.clear(); m_offset = 0; m_anchorType = PositionIsOffsetInAnchor; m_isLegacyEditingPosition = false; }
124 Node* anchorNode() const { return m_anchorNode.get(); }
129 Node* deprecatedNode() const { return m_anchorNode.get(); }
131 Document* document() const { return m_anchorNode ? &m_anchorNode->document() : 0; }
132 bool inDocument() const { return m_anchorNode && m_anchorNode->inDocument(); }
144 bool isNull() const { return !m_anchorNode; }
145 bool isNotNull() const { return m_anchorNode; }
146 bool isOrphan() const { return m_anchorNode && !m_anchorNode->inDocument(); }
218 RefPtrWillBeMember<Node> m_anchorNode;
219 // m_offset can be the offset inside m_anchorNode, or if editingIgnoresContent(m_anchorNode)