HomeSort by relevance Sort by last modified time
    Searched defs:nextChild (Results 1 - 12 of 12) 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/html/parser/
HTMLConstructionSite.h 119 Node* nextChild;
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 306 DomTreeNode *nextChild() {
551 DomTreeNode *child = NodeToProcess->nextChild();
  /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...]
Element.cpp 168 RefPtr<Node> nextChild;
169 for (RefPtr<Node> child = firstChild; child; child = nextChild) {
170 nextChild = child->nextSibling();
    [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);
  /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 319 milliseconds