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

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 62 visitor->trace(nextChild);
76 RefPtrWillBeMember<Node> nextChild;
271 ASSERT(!nextChild || nextChild == newNextChild);
272 nextChild = newNextChild;
281 nextChild.swap(other.nextChild);
295 ASSERT(!stringBuilder.isEmpty() || !nextChild);
303 RefPtrWillBeMember<Node> nextChild;
HTMLConstructionSite.cpp 107 if (task.nextChild)
108 task.parent->parserInsertBefore(task.child.get(), *task.nextChild);
135 Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild();
263 task.nextChild = pendingText.nextChild;
693 // The nextChild != dummy.nextChild case occurs whenever foster parenting happened and we hit a new text node "<table>a</table>b"
695 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 256 void ContainerNode::insertBeforeCommon(Node& nextChild, Node& newChild)
266 Node* prev = nextChild.previousSibling();
268 nextChild.setPreviousSibling(&newChild);
270 ASSERT(firstChild() != nextChild);
271 ASSERT(prev->nextSibling() == nextChild);
274 ASSERT(firstChild() == nextChild);
279 newChild.setNextSibling(&nextChild);
296 void ContainerNode::parserInsertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node& nextChild)
299 ASSERT(nextChild.parentNode() == this);
303 if (nextChild.previousSibling() == newChild || &nextChild == newChild) // nothing to d
    [all...]
ContainerNode.h 226 void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
227 void insertBeforeCommon(Node& nextChild, Node& oldChild);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUseElement.cpp 561 Node* nextChild = child->nextSibling();
563 child = nextChild;
625 Node* nextChild = child->nextSibling();
627 child = nextChild;
  /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 352 RefPtrWillBeRawPtr<Node> nextChild = child->nextSibling();
354 // Bail if nextChild is no longer node's child.
355 if (nextChild && nextChild->parentNode() != node)
357 child = nextChild;
    [all...]
markup.cpp     [all...]
ApplyStyleCommand.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
treeoutline.js 118 var nextChild = this.children[index];
119 if (nextChild) {
120 nextChild.previousSibling = child;
121 child.nextSibling = nextChild;
DataGrid.js     [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 354 DomTreeNode *nextChild() {
604 DomTreeNode *child = NodeToProcess->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...]
  /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 1011 milliseconds