Home | History | Annotate | Download | only in dom

Lines Matching refs:StaticNodeList

38 #include "core/dom/StaticNodeList.h"
47 ChildListRecord(PassRefPtrWillBeRawPtr<Node> target, PassRefPtrWillBeRawPtr<StaticNodeList> added, PassRefPtrWillBeRawPtr<StaticNodeList> removed, PassRefPtrWillBeRawPtr<Node> previousSibling, PassRefPtrWillBeRawPtr<Node> nextSibling)
69 virtual StaticNodeList* addedNodes() OVERRIDE { return m_addedNodes.get(); }
70 virtual StaticNodeList* removedNodes() OVERRIDE { return m_removedNodes.get(); }
75 RefPtrWillBeMember<StaticNodeList> m_addedNodes;
76 RefPtrWillBeMember<StaticNodeList> m_removedNodes;
100 virtual StaticNodeList* addedNodes() OVERRIDE { return lazilyInitializeEmptyNodeList(m_addedNodes); }
101 virtual StaticNodeList* removedNodes() OVERRIDE { return lazilyInitializeEmptyNodeList(m_removedNodes); }
103 static StaticNodeList* lazilyInitializeEmptyNodeList(RefPtrWillBeMember<StaticNodeList>& nodeList)
106 nodeList = StaticNodeList::createEmpty();
112 RefPtrWillBeMember<StaticNodeList> m_addedNodes;
113 RefPtrWillBeMember<StaticNodeList> m_removedNodes;
161 virtual StaticNodeList* addedNodes() OVERRIDE { return m_record->addedNodes(); }
162 virtual StaticNodeList* removedNodes() OVERRIDE { return m_record->removedNodes(); }
193 PassRefPtrWillBeRawPtr<MutationRecord> MutationRecord::createChildList(PassRefPtrWillBeRawPtr<Node> target, PassRefPtrWillBeRawPtr<StaticNodeList> added, PassRefPtrWillBeRawPtr<StaticNodeList> removed, PassRefPtrWillBeRawPtr<Node> previousSibling, PassRefPtrWillBeRawPtr<Node> nextSibling)