Home | History | Annotate | Download | only in dom

Lines Matching defs:ContainerNode

24 #include "ContainerNode.h"
74 void ContainerNode::removeAllChildren()
76 removeAllChildrenInContainer<Node, ContainerNode>(this);
79 void ContainerNode::takeAllChildrenFrom(ContainerNode* oldParent)
98 ContainerNode::~ContainerNode()
103 bool ContainerNode::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach)
141 if (ContainerNode* oldParent = child->parentNode())
189 void ContainerNode::insertBeforeCommon(Node* nextChild, Node* newChild)
214 void ContainerNode::parserInsertBefore(PassRefPtr<Node> newChild, Node* nextChild)
244 bool ContainerNode::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach)
293 if (ContainerNode* oldParent = child->parentNode())
363 void ContainerNode::willRemove()
385 static void willRemoveChildren(ContainerNode* container)
401 bool ContainerNode::removeChild(Node* oldChild, ExceptionCode& ec)
460 void ContainerNode::removeBetween(Node* previousChild, Node* nextChild, Node* oldChild)
487 void ContainerNode::parserRemoveChild(Node* oldChild)
506 void ContainerNode::removeChildren()
512 RefPtr<ContainerNode> protect(this);
571 bool ContainerNode::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach)
597 if (ContainerNode* oldParent = child->parentNode()) {
648 void ContainerNode::parserAddChild(PassRefPtr<Node> newChild)
660 appendChildToContainer<Node, ContainerNode>(newChild.get(), this);
670 void ContainerNode::deprecatedParserAddChild(PassRefPtr<Node> node)
675 void ContainerNode::suspendPostAttachCallbacks()
690 void ContainerNode::resumePostAttachCallbacks()
705 void ContainerNode::queuePostAttachCallback(NodeCallback callback, Node* node)
713 bool ContainerNode::postAttachCallbacksAreSuspended()
718 void ContainerNode::dispatchPostAttachCallbacks()
732 void ContainerNode::attach()
739 void ContainerNode::detach()
747 void ContainerNode::insertedIntoDocument()
763 void ContainerNode::removedFromDocument()
774 void ContainerNode::insertedIntoTree(bool deep)
782 void ContainerNode::removedFromTree(bool deep)
790 void ContainerNode::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
799 void ContainerNode::cloneChildNodes(ContainerNode *clone)
819 bool ContainerNode::getUpperLeftCorner(FloatPoint& point) const
883 bool ContainerNode::getLowerRightCorner(FloatPoint& point) const
932 IntRect ContainerNode::getRect() const
953 void ContainerNode::setFocus(bool received)
964 void ContainerNode::setActive(bool down, bool pause)
1007 void ContainerNode::setHovered(bool over)
1023 unsigned ContainerNode::childNodeCount() const
1032 Node *ContainerNode::childNode(unsigned index) const
1100 bool ContainerNode::dispatchBeforeLoadEvent(const String& sourceURL)
1105 RefPtr<ContainerNode> protector(this);