Home
last modified time | relevance | path

Searched refs:shouldLazyAttach (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/dom/
DContainerNode.h47 …rtBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode&, bool shouldLazyAttach = false);
48 …aceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
50 bool appendChild(PassRefPtr<Node> newChild, ExceptionCode&, bool shouldLazyAttach = false);
DContainerNode.cpp103 …::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) in insertBefore() argument
113 return appendChild(newChild, ec, shouldLazyAttach); in insertBefore()
174 if (shouldLazyAttach) in insertBefore()
244 …::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach) in replaceChild() argument
345 if (shouldLazyAttach) in replaceChild()
571 bool ContainerNode::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach) in appendChild() argument
632 if (shouldLazyAttach) in appendChild()
DNode.h161 …rtBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode&, bool shouldLazyAttach = false);
162 …aceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode&, bool shouldLazyAttach = false);
164 bool appendChild(PassRefPtr<Node> newChild, ExceptionCode&, bool shouldLazyAttach = false);
DNode.cpp636 …::insertBefore(PassRefPtr<Node> newChild, Node* refChild, ExceptionCode& ec, bool shouldLazyAttach) in insertBefore() argument
642 return toContainerNode(this)->insertBefore(newChild, refChild, ec, shouldLazyAttach); in insertBefore()
645 …::replaceChild(PassRefPtr<Node> newChild, Node* oldChild, ExceptionCode& ec, bool shouldLazyAttach) in replaceChild() argument
651 return toContainerNode(this)->replaceChild(newChild, oldChild, ec, shouldLazyAttach); in replaceChild()
663 bool Node::appendChild(PassRefPtr<Node> newChild, ExceptionCode& ec, bool shouldLazyAttach) in appendChild() argument
669 return toContainerNode(this)->appendChild(newChild, ec, shouldLazyAttach); in appendChild()
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0683385 Set the shouldLazyAttach flag to true in the tree builder's adoption agency algorithm
83388 Sets the shouldLazyAttach flag to true for appendChild() calls inside the HTML tree