Searched defs:shouldLazyAttach (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DContainerNode.cpp103 bool ContainerNode::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) argument
113 return appendChild(newChild, ec, shouldLazyAttach);
174 if (shouldLazyAttach)
244 bool ContainerNode::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach) argument
345 if (shouldLazyAttach)
571 bool ContainerNode::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach) argument
632 if (shouldLazyAttach)
H A DNode.cpp636 bool Node::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) argument
642 return toContainerNode(this)->insertBefore(newChild, refChild, ec, shouldLazyAttach);
645 bool Node::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach) argument
651 return toContainerNode(this)->replaceChild(newChild, oldChild, ec, shouldLazyAttach);
663 bool Node::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach) argument
669 return toContainerNode(this)->appendChild(newChild, ec, shouldLazyAttach);

Completed in 109 milliseconds