Searched refs:nextChild (Results 1 - 15 of 15) 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:WebCore::HTMLConstructionSiteTask
263 ASSERT(!nextChild || nextChild == newNextChild);
264 nextChild = newNextChild;
273 nextChild.swap(other.nextChild);
287 ASSERT(!stringBuilder.isEmpty() || !nextChild);
295 RefPtrWillBeMember<Node> nextChild; member in class:WebCore::FINAL::FINAL
H A DHTMLConstructionSite.cpp105 if (task.nextChild)
106 task.parent->parserInsertBefore(task.child.get(), *task.nextChild);
133 Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild();
257 task.nextChild = pendingText.nextChild;
687 // The nextChild != dummy.nextChild case occurs whenever foster parenting happened and we hit a new text node "<table>a</table>b"
689 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.cpp247 void ContainerNode::insertBeforeCommon(Node& nextChild, Node& newChild) argument
257 Node* prev = nextChild.previousSibling();
259 nextChild.setPreviousSibling(&newChild);
261 ASSERT(firstChild() != nextChild);
262 ASSERT(prev->nextSibling() == nextChild);
265 ASSERT(firstChild() == nextChild);
270 newChild.setNextSibling(&nextChild);
287 void ContainerNode::parserInsertBefore(PassRefPtrWillBeRawPtr<Node> newChild, Node& nextChild) argument
290 ASSERT(nextChild.parentNode() == this);
294 if (nextChild
491 removeBetween(Node* previousChild, Node* nextChild, Node& oldChild) argument
[all...]
H A DContainerNode.h186 void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
187 void insertBeforeCommon(Node& nextChild, Node& oldChild);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGUseElement.cpp577 Node* nextChild = child->nextSibling(); local
579 child = nextChild;
641 Node* nextChild = child->nextSibling(); local
643 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.cpp348 RefPtrWillBeRawPtr<Node> nextChild = child->nextSibling(); local
350 // Bail if nextChild is no longer node's child.
351 if (nextChild && nextChild->parentNode() != node)
353 child = nextChild;
H A Dmarkup.cpp970 RefPtrWillBeRawPtr<Node> nextChild = nullptr; local
971 for (RefPtrWillBeRawPtr<Node> child = element->firstChild(); child; child = nextChild) {
972 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.js1533 var nextChild = this.parent.children[myIndex + 1] || null;
1534 if (nextChild)
1535 nextChild.previousSibling = this;
1536 this.nextSibling = nextChild;
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp354 DomTreeNode *nextChild() { function in class:__anon25440::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/debugging/ com/google/debugging/sourcemap/ ...

Completed in 262 milliseconds