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

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.h62 visitor->trace(nextChild);
76 RefPtrWillBeMember<Node> nextChild; member in struct:blink::HTMLConstructionSiteTask
271 ASSERT(!nextChild || nextChild == newNextChild);
272 nextChild = newNextChild;
281 nextChild.swap(other.nextChild);
295 ASSERT(!stringBuilder.isEmpty() || !nextChild);
303 RefPtrWillBeMember<Node> nextChild; member in class:blink::FINAL::FINAL
H A DHTMLConstructionSite.cpp107 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/
H A DContainerNode.cpp256 void ContainerNode::insertBeforeCommon(Node& nextChild, Node& newChild) argument
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) argument
299 ASSERT(nextChild.parentNode() == this);
303 if (nextChild
574 removeBetween(Node* previousChild, Node* nextChild, Node& oldChild) argument
[all...]
H A DContainerNode.h226 void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
227 void insertBeforeCommon(Node& nextChild, Node& oldChild);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGUseElement.cpp561 Node* nextChild = child->nextSibling(); local
563 child = nextChild;
625 Node* nextChild = child->nextSibling(); local
627 child = nextChild;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.cpp77 CounterNode* nextChild = child->m_nextSibling; local
88 child = nextChild;
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DDeleteSelectionCommand.cpp352 RefPtrWillBeRawPtr<Node> nextChild = child->nextSibling(); local
354 // Bail if nextChild is no longer node's child.
355 if (nextChild && nextChild->parentNode() != node)
357 child = nextChild;
H A Dmarkup.cpp959 RefPtrWillBeRawPtr<Node> nextChild = nullptr; local
960 for (RefPtrWillBeRawPtr<Node> child = element->firstChild(); child; child = nextChild) {
961 nextChild = child->nextSibling();
H A DApplyStyleCommand.cpp1335 Node* nextChild = nextElement->firstChild(); local
1340 int endOffset = nextChild ? nextChild->nodeIndex() : nextElement->childNodes()->length();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A Dtreeoutline.js118 var nextChild = this.children[index];
119 if (nextChild) {
120 nextChild.previousSibling = child;
121 child.nextSibling = nextChild;
H A DDataGrid.js1479 var nextChild = this.parent.children[myIndex + 1] || null;
1480 if (nextChild)
1481 nextChild.previousSibling = this;
1482 this.nextSibling = nextChild;
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp354 DomTreeNode *nextChild() { function in class:__anon26278::EarlyCSE::StackNode
604 DomTreeNode *child = NodeToProcess->nextChild();
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
H A DBeautifulSoup.py238 nextChild = self.contents[position]
239 newChild.nextSibling = nextChild
242 newChildsLastElement.next = nextChild
/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 ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 2671 milliseconds