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

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 66 RefPtr<Node> nextChild;
251 ASSERT(!nextChild || nextChild == newNextChild);
252 nextChild = newNextChild;
261 nextChild.swap(other.nextChild);
275 ASSERT(!stringBuilder.isEmpty() || !nextChild);
281 RefPtr<Node> nextChild;
HTMLConstructionSite.cpp 104 if (task.nextChild)
105 task.parent->parserInsertBefore(task.child.get(), *task.nextChild);
130 Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild();
254 task.nextChild = pendingText.nextChild;
674 // The nextChild != dummy.nextChild case occurs whenever foster parenting happened and we hit a new text node "<table>a</table>b"
676 if (!m_pendingText.isEmpty() && (m_pendingText.parent != dummyTask.parent || m_pendingText.nextChild != dummyTask.nextChild))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 235 void ContainerNode::insertBeforeCommon(Node& nextChild, Node& newChild)
244 Node* prev = nextChild.previousSibling();
246 nextChild.setPreviousSibling(&newChild);
248 ASSERT(m_firstChild != nextChild);
249 ASSERT(prev->nextSibling() == nextChild);
252 ASSERT(m_firstChild == nextChild);
257 newChild.setNextSibling(&nextChild);
260 void ContainerNode::parserInsertBefore(PassRefPtr<Node> newChild, Node& nextChild)
263 ASSERT(nextChild.parentNode() == this);
267 if (nextChild.previousSibling() == newChild || nextChild == newChild) // nothing to d
    [all...]
ContainerNode.h 149 void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
150 void insertBeforeCommon(Node& nextChild, Node& oldChild);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CounterNode.cpp 77 CounterNode* nextChild = child->m_nextSibling;
88 child = nextChild;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
DeleteSelectionCommand.cpp 358 RefPtr<Node> nextChild = child->nextSibling();
360 // Bail if nextChild is no longer node's child.
361 if (nextChild && nextChild->parentNode() != node)
363 child = nextChild;
    [all...]
markup.cpp     [all...]
ApplyStyleCommand.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
treeoutline.js 117 var nextChild = this.children[index];
118 if (nextChild) {
119 nextChild.previousSibling = child;
120 child.nextSibling = nextChild;
DataGrid.js     [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 363 DomTreeNode *nextChild() {
609 DomTreeNode *child = NodeToProcess->nextChild();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 375 Node nextChild = lastElement != null ? lastElement.getNextSibling() : null;
377 root.insertBefore(indentNode, nextChild);
389 root.insertBefore(element, nextChild);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 238 nextChild = self.contents[position]
239 newChild.nextSibling = nextChild
242 newChildsLastElement.next = nextChild
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RelativeLayoutConversionHelper.java 486 Element nextChild = children.get(index + 1);
487 String nextId = mRefactoring.ensureHasId(mRootEdit, nextChild, null);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 

Completed in 277 milliseconds