Lines Matching defs:ContainerNode

24 #include "core/dom/ContainerNode.h"
75 if (ContainerNode* oldParent = node.parentNode())
80 void ContainerNode::removeDetachedChildren()
88 void ContainerNode::parserTakeAllChildrenFrom(ContainerNode& oldParent)
97 ContainerNode::~ContainerNode()
106 bool ContainerNode::isChildTypeAllowed(const Node& child) const
118 bool ContainerNode::containsConsideringHostElements(const Node& newChild) const
125 bool ContainerNode::checkAcceptChild(const Node* newChild, const Node* oldChild, ExceptionState& exceptionState) const
169 bool ContainerNode::checkAcceptChildGuaranteedNodeTypes(const Node& newChild, ExceptionState& exceptionState) const
179 PassRefPtrWillBeRawPtr<Node> ContainerNode::insertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node* refChild, ExceptionState& exceptionState)
256 void ContainerNode::insertBeforeCommon(Node& nextChild, Node& newChild)
282 void ContainerNode::appendChildCommon(Node& child)
296 void ContainerNode::parserInsertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node& nextChild)
320 PassRefPtrWillBeRawPtr<Node> ContainerNode::replaceChild(PassRefPtrWillBeRawPtr<Node> newChild, PassRefPtrWillBeRawPtr<Node> oldChild, ExceptionState& exceptionState)
418 void ContainerNode::willRemoveChild(Node& child)
428 void ContainerNode::willRemoveChildren()
446 void ContainerNode::removeDetachedChildrenInContainer(ContainerNode& container)
473 void ContainerNode::addChildNodesToDeletionQueue(Node*& head, Node*& tail, ContainerNode& container)
511 void ContainerNode::disconnectDescendantFrames()
516 void ContainerNode::trace(Visitor* visitor)
523 PassRefPtrWillBeRawPtr<Node> ContainerNode::removeChild(PassRefPtrWillBeRawPtr<Node> oldChild, ExceptionState& exceptionState)
574 void ContainerNode::removeBetween(Node* previousChild, Node* nextChild, Node& oldChild)
599 void ContainerNode::parserRemoveChild(Node& oldChild)
620 void ContainerNode::removeChildren()
626 RefPtrWillBeRawPtr<ContainerNode> protect(this);
680 PassRefPtrWillBeRawPtr<Node> ContainerNode::appendChild(PassRefPtrWillBeRawPtr<Node> newChild, ExceptionState& exceptionState)
682 RefPtrWillBeRawPtr<ContainerNode> protect(this);
745 void ContainerNode::parserAppendChild(PassRefPtrWillBeRawPtr<Node> newChild)
770 void ContainerNode::notifyNodeInserted(Node& root, ChildrenChangeSource source)
792 void ContainerNode::notifyNodeInsertedInternal(Node& root, NodeVector& postInsertionNotificationTargets)
809 void ContainerNode::notifyNodeRemoved(Node& root)
829 void ContainerNode::attach(const AttachContext& context)
836 void ContainerNode::detach(const AttachContext& context)
843 void ContainerNode::childrenChanged(const ChildrenChange& change)
855 void ContainerNode::cloneChildNodes(ContainerNode *clone)
863 bool ContainerNode::getUpperLeftCorner(FloatPoint& point) const
924 bool ContainerNode::getLowerRightCorner(FloatPoint& point) const
973 // InlineBox and it does not belong in ContainerNode as it reaches into
976 LayoutRect ContainerNode::boundingBox() const
996 void ContainerNode::focusStateChanged()
1016 void ContainerNode::setFocus(bool received)
1035 void ContainerNode::setActive(bool down)
1058 void ContainerNode::setHovered(bool over)
1089 PassRefPtrWillBeRawPtr<HTMLCollection> ContainerNode::children()
1094 unsigned ContainerNode::countChildren() const
1103 PassRefPtrWillBeRawPtr<Element> ContainerNode::querySelector(const AtomicString& selectors, ExceptionState& exceptionState)
1116 PassRefPtrWillBeRawPtr<StaticElementList> ContainerNode::querySelectorAll(const AtomicString& selectors, ExceptionState& exceptionState)
1178 void ContainerNode::updateTreeAfterInsertion(Node& child)
1192 bool ContainerNode::hasRestyleFlagInternal(DynamicRestyleFlags mask) const
1197 bool ContainerNode::hasRestyleFlagsInternal() const
1202 void ContainerNode::setRestyleFlag(DynamicRestyleFlags mask)
1208 void ContainerNode::recalcChildStyle(StyleRecalcChange change)
1239 void ContainerNode::checkForChildrenAdjacentRuleChanges()
1266 void ContainerNode::checkForSiblingStyleChanges(SiblingCheckType changeType, Node* nodeBeforeChange, Node* nodeAfterChange)
1343 void ContainerNode::invalidateNodeListCachesInAncestors(const QualifiedName* attrName, Element* attributeOwnerElement)
1361 for (ContainerNode* node = this; node; node = node->parentNode()) {
1367 PassRefPtrWillBeRawPtr<TagCollection> ContainerNode::getElementsByTagName(const AtomicString& localName)
1377 PassRefPtrWillBeRawPtr<TagCollection> ContainerNode::getElementsByTagNameNS(const AtomicString& namespaceURI, const AtomicString& localName)
1390 PassRefPtrWillBeRawPtr<NameNodeList> ContainerNode::getElementsByName(const AtomicString& elementName)
1397 PassRefPtrWillBeRawPtr<ClassCollection> ContainerNode::getElementsByClassName(const AtomicString& classNames)
1402 PassRefPtrWillBeRawPtr<RadioNodeList> ContainerNode::radioNodeList(const AtomicString& name, bool onlyMatchImgElements)
1409 Element* ContainerNode::getElementById(const AtomicString& id) const
1429 NodeListsNodeData& ContainerNode::ensureNodeLists()
1435 bool childAttachedAllowedWhenAttachingChildren(ContainerNode* node)