HomeSort by relevance Sort by last modified time
    Searched defs:ContainerNode (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.h 81 class ContainerNode : public Node {
84 virtual ~ContainerNode();
112 void takeAllChildrenFrom(ContainerNode*);
114 void cloneChildNodes(ContainerNode* clone);
135 ContainerNode(TreeScope*, ConstructionType = CreateContainer);
170 bool childAttachedAllowedWhenAttachingChildren(ContainerNode*);
173 inline ContainerNode* toContainerNode(Node* node)
176 return static_cast<ContainerNode*>(node);
179 inline const ContainerNode* toContainerNode(const Node* node)
182 return static_cast<const ContainerNode*>(node)
    [all...]
ContainerNode.cpp 24 #include "core/dom/ContainerNode.h"
50 static void updateTreeAfterInsertion(ContainerNode*, Node*, AttachBehavior);
69 if (ContainerNode* oldParent = node->parentNode())
77 void ContainerNode::removeDetachedChildren()
84 removeDetachedChildrenInContainer<Node, ContainerNode>(this);
87 void ContainerNode::takeAllChildrenFrom(ContainerNode* oldParent)
118 ContainerNode::~ContainerNode()
125 static inline bool isChildTypeAllowed(ContainerNode* newParent, Node* child
    [all...]

Completed in 196 milliseconds