Searched refs:nextChild (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DReplaceNodeWithSpanCommand.cpp59 RefPtr<Node> nextChild; local
60 for (Node* child = nodeToReplace->firstChild(); child; child = nextChild.get()) {
61 nextChild = child->nextSibling();
H A DDeleteSelectionCommand.cpp361 RefPtr<Node> nextChild = child->nextSibling(); local
363 // Bail if nextChild is no longer node's child.
364 if (nextChild && nextChild->parentNode() != node)
366 child = nextChild;
H A DApplyStyleCommand.cpp996 Node* nextChild = child->nextSibling(); local
1020 child = nextChild;
1292 Node* nextChild = nextElement->firstChild(); local
1297 int endOffset = nextChild ? nextChild->nodeIndex() : nextElement->childNodes()->length();
/external/webkit/Source/WebCore/dom/
H A DContainerNode.cpp189 void ContainerNode::insertBeforeCommon(Node* nextChild, Node* newChild) argument
197 Node* prev = nextChild->previousSibling();
199 nextChild->setPreviousSibling(newChild);
201 ASSERT(m_firstChild != nextChild);
202 ASSERT(prev->nextSibling() == nextChild);
205 ASSERT(m_firstChild == nextChild);
210 newChild->setNextSibling(nextChild);
214 void ContainerNode::parserInsertBefore(PassRefPtr<Node> newChild, Node* nextChild) argument
217 ASSERT(nextChild);
218 ASSERT(nextChild
290 RefPtr<Node> nextChild = isFragment ? child->nextSibling() : 0; local
460 removeBetween(Node* previousChild, Node* nextChild, Node* oldChild) argument
[all...]
H A DContainerNode.h111 void removeBetween(Node* previousChild, Node* nextChild, Node* oldChild);
112 void insertBeforeCommon(Node* nextChild, Node* oldChild);
H A DElement.cpp168 RefPtr<Node> nextChild; local
169 for (RefPtr<Node> child = firstChild; child; child = nextChild) {
170 nextChild = child->nextSibling();
/external/webkit/Source/WebCore/html/parser/
H A DHTMLConstructionSite.cpp119 if (site.nextChild)
120 site.parent->parserInsertBefore(child, site.nextChild);
336 site.nextChild = 0;
345 Node* previousChild = site.nextChild ? site.nextChild->previousSibling() : site.parent->lastChild();
475 site.nextChild = lastTableElement;
479 site.nextChild = 0;
484 site.nextChild = 0;
H A DHTMLConstructionSite.h119 Node* nextChild; member in struct:WebCore::HTMLConstructionSite::AttachmentSite
/external/webkit/Source/WebCore/platform/gtk/
H A DPopupMenuGtk.cpp203 if (GList* nextChild = g_list_next(currentChild))
204 currentChild = nextChild;
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp306 DomTreeNode *nextChild() { function in class:__anon9087::EarlyCSE::StackNode
551 DomTreeNode *child = NodeToProcess->nextChild();
/external/webkit/Source/WebCore/inspector/front-end/
H A Dtreeoutline.js104 var nextChild = this.children[index];
105 if (nextChild) {
106 nextChild.previousSibling = child;
107 child.nextSibling = nextChild;
H A DDataGrid.js1213 var nextChild = this.parent.children[myIndex + 1];
1215 if (nextChild) {
1216 nextChild.previousSibling = this;
1217 this.nextSibling = nextChild;
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A DBeautifulSoup.py230 nextChild = self.contents[position]
231 newChild.nextSibling = nextChild
234 newChildsLastElement.next = nextChild
/external/webkit/Source/WebCore/rendering/
H A DRenderBlock.cpp887 RenderObject* nextChild = startChild; local
888 while (nextChild && nextChild != endChild) {
889 RenderObject* child = nextChild;
890 nextChild = child->nextSibling();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 254 milliseconds