HomeSort by relevance Sort by last modified time
    Searched refs:StaticNodeList (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationRecord.h 45 typedef StaticNodeTypeList<Node> StaticNodeList;
50 static PassRefPtrWillBeRawPtr<MutationRecord> createChildList(PassRefPtrWillBeRawPtr<Node> target, PassRefPtrWillBeRawPtr<StaticNodeList> added, PassRefPtrWillBeRawPtr<StaticNodeList> removed, PassRefPtrWillBeRawPtr<Node> previousSibling, PassRefPtrWillBeRawPtr<Node> nextSibling);
62 virtual StaticNodeList* addedNodes() = 0;
63 virtual StaticNodeList* removedNodes() = 0;
MutationRecord.cpp 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
    [all...]
ChildListMutationScope.cpp 36 #include "core/dom/StaticNodeList.h"
139 RefPtrWillBeRawPtr<StaticNodeList> addedNodes = StaticNodeList::adopt(m_addedNodes);
140 RefPtrWillBeRawPtr<StaticNodeList> removedNodes = StaticNodeList::adopt(m_removedNodes);
StaticNodeList.h 69 typedef StaticNodeTypeList<Node> StaticNodeList;
Node.h 84 typedef StaticNodeTypeList<Node> StaticNodeList;
652 PassRefPtrWillBeRawPtr<StaticNodeList> getDestinationInsertionPoints();
    [all...]
Node.cpp 55 #include "core/dom/StaticNodeList.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
TreeScopeEventContext.h 43 typedef StaticNodeTypeList<Node> StaticNodeList;
64 PassRefPtrWillBeRawPtr<StaticNodeList> ensureEventPath(EventPath&);
83 RefPtrWillBeMember<StaticNodeList> m_eventPath;
TreeScopeEventContext.cpp 30 #include "core/dom/StaticNodeList.h"
37 PassRefPtrWillBeRawPtr<StaticNodeList> TreeScopeEventContext::ensureEventPath(EventPath& path)
51 m_eventPath = StaticNodeList::adopt(nodes);
Event.cpp 26 #include "core/dom/StaticNodeList.h"
222 PassRefPtrWillBeRawPtr<StaticNodeList> Event::path() const
228 return StaticNodeList::createEmpty();
235 return StaticNodeList::createEmpty();
243 return StaticNodeList::createEmpty();
Event.h 182 PassRefPtrWillBeRawPtr<StaticNodeList> path() const;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSVGElement.h 93 PassRefPtrWillBeRawPtr<StaticNodeList> getIntersectionList(PassRefPtr<SVGRectTearOff>, SVGElement* referenceElement) const;
94 PassRefPtrWillBeRawPtr<StaticNodeList> getEnclosureList(PassRefPtr<SVGRectTearOff>, SVGElement* referenceElement) const;
152 PassRefPtrWillBeRawPtr<StaticNodeList> collectIntersectionOrEnclosureList(const FloatRect&, SVGElement*, CheckIntersectionOrEnclosure) const;
SVGSVGElement.cpp 33 #include "core/dom/StaticNodeList.h"
376 PassRefPtrWillBeRawPtr<StaticNodeList> SVGSVGElement::collectIntersectionOrEnclosureList(const FloatRect& rect,
388 return StaticNodeList::adopt(nodes);
398 return StaticNodeList::adopt(nodes);
401 PassRefPtrWillBeRawPtr<StaticNodeList> SVGSVGElement::getIntersectionList(PassRefPtr<SVGRectTearOff> rect, SVGElement* referenceElement) const
408 PassRefPtrWillBeRawPtr<StaticNodeList> SVGSVGElement::getEnclosureList(PassRefPtr<SVGRectTearOff> rect, SVGElement* referenceElement) const
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
InsertionPoint.h 54 PassRefPtrWillBeRawPtr<StaticNodeList> getDistributedNodes();
InsertionPoint.cpp 38 #include "core/dom/StaticNodeList.h"
171 PassRefPtrWillBeRawPtr<StaticNodeList> InsertionPoint::getDistributedNodes()
180 return StaticNodeList::adopt(nodes);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.h 74 typedef StaticNodeTypeList<Node> StaticNodeList;
188 PassRefPtrWillBeRawPtr<StaticNodeList> nodesFromRect(Document*, int x, int y, unsigned topPadding, unsigned rightPadding,
Internals.cpp 56 #include "core/dom/StaticNodeList.h"
    [all...]

Completed in 156 milliseconds