HomeSort by relevance Sort by last modified time
    Searched refs:nextChild (Results 1 - 18 of 18) sorted by null

  /external/webkit/Source/WebCore/editing/
ReplaceNodeWithSpanCommand.cpp 59 RefPtr<Node> nextChild;
60 for (Node* child = nodeToReplace->firstChild(); child; child = nextChild.get()) {
61 nextChild = child->nextSibling();
DeleteSelectionCommand.cpp 361 RefPtr<Node> nextChild = child->nextSibling();
363 // Bail if nextChild is no longer node's child.
364 if (nextChild && nextChild->parentNode() != node)
366 child = nextChild;
    [all...]
ApplyStyleCommand.cpp     [all...]
  /external/webkit/Source/WebCore/dom/
ContainerNode.cpp 189 void ContainerNode::insertBeforeCommon(Node* nextChild, Node* newChild)
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)
217 ASSERT(nextChild);
218 ASSERT(nextChild->parentNode() == this)
    [all...]
ContainerNode.h 111 void removeBetween(Node* previousChild, Node* nextChild, Node* oldChild);
112 void insertBeforeCommon(Node* nextChild, Node* oldChild);
Element.cpp 168 RefPtr<Node> nextChild;
169 for (RefPtr<Node> child = firstChild; child; child = nextChild) {
170 nextChild = child->nextSibling();
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.cpp 119 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;
HTMLConstructionSite.h 119 Node* nextChild;
  /external/webkit/Source/WebCore/platform/gtk/
PopupMenuGtk.cpp 203 if (GList* nextChild = g_list_next(currentChild))
204 currentChild = nextChild;
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 306 DomTreeNode *nextChild() {
551 DomTreeNode *child = NodeToProcess->nextChild();
  /external/webkit/Source/WebCore/inspector/front-end/
treeoutline.js 104 var nextChild = this.children[index];
105 if (nextChild) {
106 nextChild.previousSibling = child;
107 child.nextSibling = nextChild;
DataGrid.js     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 405 Node nextChild = lastElement != null ? lastElement.getNextSibling() : null;
407 root.insertBefore(indentNode, nextChild);
419 root.insertBefore(element, nextChild);
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 230 nextChild = self.contents[position]
231 newChild.nextSibling = nextChild
234 newChildsLastElement.next = nextChild
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 488 Element nextChild = children.get(index + 1);
489 String nextId = mRefactoring.ensureHasId(mRootEdit, nextChild, null);
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBlock.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 277 milliseconds