Home
last modified time | relevance | path

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

/external/webkit/WebCore/dom/
DContainerNode.cpp102 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in insertBefore() local
157 child = nextChild.release(); in insertBefore()
211 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in replaceChild() local
269 child = nextChild.release(); in replaceChild()
455 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; in appendChild() local
493 child = nextChild.release(); in appendChild()
/external/webkit/WebCore/inspector/front-end/
Dtreeoutline.js101 var nextChild = this.children[index];
102 if (nextChild) {
103 nextChild.previousSibling = child;
104 child.nextSibling = nextChild;
DDataGrid.js788 var nextChild = this.parent.children[myIndex + 1];
790 if (nextChild) {
791 nextChild.previousSibling = this;
792 this.nextSibling = nextChild;
/external/webkit/WebCore/editing/
DDeleteSelectionCommand.cpp337 RefPtr<Node> nextChild = child->nextSibling(); in removeNode() local
340 if (nextChild && nextChild->parentNode() != node) in removeNode()
342 child = nextChild; in removeNode()
DApplyStyleCommand.cpp1331 Node* nextChild = child->nextSibling(); in pushDownTextDecorationStyleAroundNode() local
1342 child = nextChild; in pushDownTextDecorationStyleAroundNode()
1623 Node *nextChild = nextElement->firstChild(); in mergeEndWithNextIfIdentical() local
1630 int endOffset = nextChild ? nextChild->nodeIndex() : nextElement->childNodes()->length(); in mergeEndWithNextIfIdentical()
/external/webkit/WebCore/html/
DHTMLElement.cpp284 RefPtr<Node> nextChild; in createContextualFragment() local
285 for (RefPtr<Node> child = firstChild; child; child = nextChild) { in createContextualFragment()
286 nextChild = child->nextSibling(); in createContextualFragment()
/external/webkit/WebKitTools/Scripts/modules/
DBeautifulSoup.py230 nextChild = self.contents[position]
231 newChild.nextSibling = nextChild
234 newChildsLastElement.next = nextChild
/external/webkit/WebCore/
DChangeLog-2006-05-1024532 - make nextChild a RefPtr to survive possible DOM changes