Home
last modified time | relevance | path

Searched refs:nextChild (Results 1 – 10 of 10) sorted by relevance

/external/webkit/WebCore/editing/
DReplaceNodeWithSpanCommand.cpp60 Node* nextChild; in swapInNodePreservingAttributesAndChildren() local
61 for (Node* child = nodeToReplace->firstChild(); child; child = nextChild) { in swapInNodePreservingAttributesAndChildren()
62 nextChild = child->nextSibling(); in swapInNodePreservingAttributesAndChildren()
DDeleteSelectionCommand.cpp336 RefPtr<Node> nextChild = child->nextSibling(); in removeNode() local
339 if (nextChild && nextChild->parentNode() != node) in removeNode()
341 child = nextChild; in removeNode()
DApplyStyleCommand.cpp1395 Node* nextChild = child->nextSibling(); in pushDownTextDecorationStyleAroundNode() local
1406 child = nextChild; in pushDownTextDecorationStyleAroundNode()
1688 Node *nextChild = nextElement->firstChild(); in mergeEndWithNextIfIdentical() local
1695 int endOffset = nextChild ? nextChild->nodeIndex() : nextElement->childNodes()->length(); in mergeEndWithNextIfIdentical()
/external/webkit/WebCore/dom/
DContainerNode.cpp104 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in insertBefore() local
159 child = nextChild.release(); in insertBefore()
213 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in replaceChild() local
271 child = nextChild.release(); in replaceChild()
457 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in appendChild() local
495 child = nextChild.release(); in appendChild()
/external/webkit/WebCore/inspector/front-end/
Dtreeoutline.js104 var nextChild = this.children[index];
105 if (nextChild) {
106 nextChild.previousSibling = child;
107 child.nextSibling = nextChild;
DDataGrid.js1016 var nextChild = this.parent.children[myIndex + 1];
1018 if (nextChild) {
1019 nextChild.previousSibling = this;
1020 this.nextSibling = nextChild;
/external/webkit/WebCore/html/
DHTMLElement.cpp309 RefPtr<Node> nextChild; in createContextualFragment() local
310 for (RefPtr<Node> child = firstChild; child; child = nextChild) { in createContextualFragment()
311 nextChild = child->nextSibling(); in createContextualFragment()
/external/webkit/WebKitTools/Scripts/webkitpy/
DBeautifulSoup.py230 nextChild = self.contents[position]
231 newChild.nextSibling = nextChild
234 newChildsLastElement.next = nextChild
/external/webkit/WebCore/rendering/
DRenderBlock.cpp420 RenderObject* nextChild = children()->firstChild(); in moveAllChildrenTo() local
421 while (nextChild) { in moveAllChildrenTo()
422 RenderObject* child = nextChild; in moveAllChildrenTo()
423 nextChild = child->nextSibling(); in moveAllChildrenTo()
435 RenderObject* nextChild = children()->firstChild(); in moveAllChildrenTo() local
436 while (nextChild) { in moveAllChildrenTo()
437 RenderObject* child = nextChild; in moveAllChildrenTo()
438 nextChild = child->nextSibling(); in moveAllChildrenTo()
/external/webkit/WebCore/
DChangeLog-2006-05-1024532 - make nextChild a RefPtr to survive possible DOM changes