Home
last modified time | relevance | path

Searched refs:previousChild (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DContainerNode.cpp449 void ContainerNode::removeBetween(Node* previousChild, Node* nextChild, Node& oldChild) in removeBetween() argument
459 nextChild->setPreviousSibling(previousChild); in removeBetween()
460 if (previousChild) in removeBetween()
461 previousChild->setNextSibling(nextChild); in removeBetween()
465 m_lastChild = previousChild; in removeBetween()
DContainerNode.h149 void removeBetween(Node* previousChild, Node* nextChild, Node& oldChild);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Dtreeoutline.js109 var previousChild = (index > 0 ? this.children[index - 1] : null);
110 if (previousChild) {
111 previousChild.nextSibling = child;
112 child.previousSibling = previousChild;
DDataGrid.js1495 var previousChild = (myIndex > 0 ? this.parent.children[myIndex - 1] : null);
1497 if (previousChild) {
1498 previousChild.nextSibling = this;
1499 this.previousSibling = previousChild;
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLConstructionSite.cpp130 …Node* previousChild = task.nextChild ? task.nextChild->previousSibling() : task.parent->lastChild(… in executeInsertTextTask() local
131 if (previousChild && previousChild->isTextNode()) { in executeInsertTextTask()
132 Text* previousText = toText(previousChild); in executeInsertTextTask()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
DBeautifulSoup.py209 previousChild = None
214 previousChild = self.contents[position-1]
215 newChild.previousSibling = previousChild
217 newChild.previous = previousChild._lastRecursiveChild()