Home
last modified time | relevance | path

Searched refs:nextChild (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLConstructionSite.h66 RefPtr<Node> nextChild; member
251 ASSERT(!nextChild || nextChild == newNextChild);
252 nextChild = newNextChild;
261 nextChild.swap(other.nextChild);
275 ASSERT(!stringBuilder.isEmpty() || !nextChild);
281 RefPtr<Node> nextChild;
DHTMLConstructionSite.cpp104 if (task.nextChild) in insert()
105 task.parent->parserInsertBefore(task.child.get(), *task.nextChild); in insert()
130 …Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild(… in executeInsertTextTask()
254 task.nextChild = pendingText.nextChild; in flushPendingText()
676 …) && (m_pendingText.parent != dummyTask.parent || m_pendingText.nextChild != dummyTask.nextChild)) in insertTextNode()
678 m_pendingText.append(dummyTask.parent, dummyTask.nextChild, string, whitespaceMode); in insertTextNode()
833 task.nextChild = lastTableElement; in findFosterSite()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DContainerNode.cpp235 void ContainerNode::insertBeforeCommon(Node& nextChild, Node& newChild) in insertBeforeCommon() argument
244 Node* prev = nextChild.previousSibling(); in insertBeforeCommon()
246 nextChild.setPreviousSibling(&newChild); in insertBeforeCommon()
248 ASSERT(m_firstChild != nextChild); in insertBeforeCommon()
249 ASSERT(prev->nextSibling() == nextChild); in insertBeforeCommon()
252 ASSERT(m_firstChild == nextChild); in insertBeforeCommon()
257 newChild.setNextSibling(&nextChild); in insertBeforeCommon()
260 void ContainerNode::parserInsertBefore(PassRefPtr<Node> newChild, Node& nextChild) in parserInsertBefore() argument
263 ASSERT(nextChild.parentNode() == this); in parserInsertBefore()
267 if (nextChild.previousSibling() == newChild || nextChild == newChild) // nothing to do in parserInsertBefore()
[all …]
DContainerNode.h149 void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
150 void insertBeforeCommon(Node& nextChild, Node& oldChild);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DCounterNode.cpp77 CounterNode* nextChild = child->m_nextSibling; in ~CounterNode() local
88 child = nextChild; in ~CounterNode()
/external/chromium_org/third_party/WebKit/Source/core/editing/
DDeleteSelectionCommand.cpp358 RefPtr<Node> nextChild = child->nextSibling(); in removeNode() local
361 if (nextChild && nextChild->parentNode() != node) in removeNode()
363 child = nextChild; in removeNode()
Dmarkup.cpp989 RefPtr<Node> nextChild; in removeElementPreservingChildren() local
990 for (RefPtr<Node> child = element->firstChild(); child; child = nextChild) { in removeElementPreservingChildren()
991 nextChild = child->nextSibling(); in removeElementPreservingChildren()
DApplyStyleCommand.cpp1321 Node* nextChild = nextElement->firstChild(); in mergeEndWithNextIfIdentical() local
1326 int endOffset = nextChild ? nextChild->nodeIndex() : nextElement->childNodes()->length(); in mergeEndWithNextIfIdentical()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Dtreeoutline.js117 var nextChild = this.children[index];
118 if (nextChild) {
119 nextChild.previousSibling = child;
120 child.nextSibling = nextChild;
DDataGrid.js1503 var nextChild = this.parent.children[myIndex + 1];
1505 if (nextChild) {
1506 nextChild.previousSibling = this;
1507 this.nextSibling = nextChild;
/external/llvm/lib/Transforms/Scalar/
DEarlyCSE.cpp363 DomTreeNode *nextChild() { in nextChild() function in __anonde2cc2b70311::EarlyCSE::StackNode
609 DomTreeNode *child = NodeToProcess->nextChild(); in runOnFunction()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py238 nextChild = self.contents[position]
239 newChild.nextSibling = nextChild
242 newChildsLastElement.next = nextChild