Searched refs:lastChild (Results 1 - 25 of 101) sorted by relevance

12345

/external/webkit/WebCore/dom/
H A DContainerNodeAlgorithms.h73 GenericNode* lastChild = container->lastChild(); local
74 if (lastChild) {
75 child->setPreviousSibling(lastChild);
76 lastChild->setNextSibling(child);
H A DTreeWalker.h49 Node* lastChild(ScriptState*);
59 Node* lastChild() { return lastChild(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); } function in class:WebCore::TreeWalker
H A DTreeWalker.idl36 [Custom] Node lastChild();
H A DTreeWalker.cpp106 Node* TreeWalker::lastChild(ScriptState* state) function in class:WebCore::TreeWalker
108 for (RefPtr<Node> node = m_current->lastChild(); node; ) {
117 if (node->lastChild()) {
118 node = node->lastChild();
222 while (Node* lastChild = node->lastChild()) {
223 node = lastChild;
H A DContainerNode.h44 Node* lastChild() const { return m_lastChild; } function in class:WebCore::ContainerNode
131 return static_cast<const ContainerNode*>(this)->lastChild();
H A DChildNodeList.cpp74 n = m_rootNode->lastChild();
H A DPositionIterator.cpp92 m_anchorNode = m_anchorNode->lastChild();
H A DRangeBoundaryPoint.h155 m_childBeforeBoundary = m_containerNode->lastChild();
/external/webkit/WebCore/rendering/
H A DRenderRubyBase.cpp97 RenderObject* lastChild = toBase->lastChild(); local
98 if (lastChild && lastChild->isAnonymousBlock() && lastChild->childrenInline())
99 toBlock = toRenderBlock(lastChild);
174 RenderObject* lastChildThere = toBase->lastChild();
H A DRenderObjectChildList.h45 RenderObject* lastChild() const { return m_lastChild; } function in class:WebCore::RenderObjectChildList
48 // will need to manipulate firstChild or lastChild directly.
H A DRenderTableRow.cpp68 if (!beforeChild && isAfterContent(lastChild()))
69 beforeChild = lastChild();
74 last = lastChild();
168 for (RenderObject* child = lastChild(); child; child = child->previousSibling()) {
H A DRenderRubyRun.cpp74 return lastChild() && lastChild()->isRubyBase();
90 RenderObject* child = lastChild();
H A DCounterNode.cpp73 while (CounterNode* lastChild = last->m_lastChild)
74 last = lastChild;
85 while (CounterNode* lastChild = previous->m_lastChild)
86 previous = lastChild;
H A DCounterNode.h55 CounterNode* lastChild() const { return m_lastChild; } function in class:WebCore::CounterNode
H A DRenderCounter.cpp271 if (currentRenderer->lastChild())
272 currentRenderer = currentRenderer->lastChild();
276 newNode->insertAfter(currentCounter, newNode->lastChild(), identifier);
277 if (currentRenderer->lastChild())
278 currentRenderer = currentRenderer->lastChild();
H A DRenderObjectChildList.cpp118 if (lastChild() == oldChild)
137 RenderObject* lChild = lastChild();
251 last = last->lastChild();
338 child = (type == BEFORE) ? owner->virtualChildren()->firstChild() : owner->virtualChildren()->lastChild();
H A DRenderRuby.cpp44 RenderObject* child = ruby->lastChild();
/external/webkit/WebCore/html/
H A DHTMLTableRowsCollection.cpp119 for (Node* child = table->lastChild(); child; child = child->previousSibling()) {
121 for (Node* grandchild = child->lastChild(); grandchild; grandchild = grandchild->previousSibling()) {
128 for (Node* child = table->lastChild(); child; child = child->previousSibling()) {
132 for (Node* grandchild = child->lastChild(); grandchild; grandchild = grandchild->previousSibling()) {
139 for (Node* child = table->lastChild(); child; child = child->previousSibling()) {
141 for (Node* grandchild = child->lastChild(); grandchild; grandchild = grandchild->previousSibling()) {
/external/webkit/WebCore/bindings/js/
H A DJSTreeWalkerCustom.cpp56 JSValue JSTreeWalker::lastChild(ExecState* exec, const ArgList&) function in class:WebCore::JSTreeWalker
58 Node* node = impl()->lastChild(exec);
/external/webkit/WebKit/chromium/src/
H A DWebNode.cpp139 WebNode WebNode::lastChild() const function in class:WebKit::WebNode
141 return WebNode(m_private->lastChild());
/external/webkit/WebCore/page/
H A DFrameTree.h50 Frame* lastChild() const { return m_lastChild; } function in class:WebCore::FrameTree
/external/webkit/WebKit/chromium/public/
H A DWebAccessibilityObject.h77 WebAccessibilityObject lastChild() const;
/external/webkit/WebCore/inspector/front-end/
H A DTextViewer.js317 var element = lineRow.lastChild;
374 var start = startRow.lastChild.rangeBoundaryForOffset(range.startColumn);
380 var lineCell = this._textChunks[chunkNumber].element.lastChild;
389 var end = endRow.lastChild.rangeBoundaryForOffset(range.endColumn);
395 var lineCell = this._textChunks[chunkNumber].element.lastChild;
428 var text = lineRow.lastChild.textContent;
441 var node = lineRow.lastChild.traverseNextTextNode(lineRow.lastChild);
444 node = node.traverseNextTextNode(lineRow.lastChild);
/external/libxml2/
H A DSAX2.c2402 xmlNodePtr lastChild; local
2422 lastChild = ctxt->node->last;
2432 if (lastChild == NULL) {
2433 lastChild = xmlSAX2TextNode(ctxt, ch, len);
2434 if (lastChild != NULL) {
2435 ctxt->node->children = lastChild;
2436 ctxt->node->last = lastChild;
2437 lastChild->parent = ctxt->node;
2438 lastChild->doc = ctxt->node->doc;
2446 int coalesceText = (lastChild !
2671 xmlNodePtr ret, lastChild; local
[all...]
/external/webkit/WebCore/bindings/v8/custom/
H A DV8TreeWalkerCustom.cpp80 INC_STATS("DOM.TreeWalker.lastChild()");
84 RefPtr<Node> result = treeWalker->lastChild(&state);

Completed in 181 milliseconds

12345