Searched defs:lastChild (Results 1 - 25 of 39) sorted by relevance

12

/external/webkit/Source/WebCore/rendering/
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 DCounterNode.h62 CounterNode* lastChild() const { return m_lastChild; } function in class:WebCore::CounterNode
H A DRenderRubyBase.cpp100 RenderObject* lastChild = toBase->lastChild(); local
101 if (lastChild && lastChild->isAnonymousBlock() && lastChild->childrenInline())
102 toBlock = toRenderBlock(lastChild);
176 RenderObject* lastChildThere = toBase->lastChild();
H A DInlineFlowBox.h72 InlineBox* lastChild() const { checkConsistency(); return m_lastChild; } function in class:WebCore::InlineFlowBox
/external/webkit/Source/WebCore/dom/
H A DContainerNode.h45 Node* lastChild() const { return m_lastChild; } function in class:WebCore::ContainerNode
166 inline Node* Node::lastChild() const function in class:WebCore::Node
170 return toContainerNode(this)->lastChild();
H A DContainerNodeAlgorithms.h73 GenericNode* lastChild = container->lastChild(); local
74 if (lastChild) {
75 child->setPreviousSibling(lastChild);
76 lastChild->setNextSibling(child);
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();
154 if (sibling->lastChild()) {
155 sibling = sibling->lastChild();
224 while (Node* lastChild = node->lastChild()) {
225 node = lastChild;
H A DTreeWalker.h49 Node* lastChild(ScriptState*);
59 Node* lastChild() { return lastChild(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); } function in class:WebCore::TreeWalker
/external/webkit/Source/WebCore/page/
H A DFrameTree.h52 Frame* lastChild() const { return m_lastChild; } function in class:WebCore::FrameTree
/external/markdown/markdown/
H A Dblockprocessors.py32 def lastChild(self, parent): member in class:BlockProcessor
174 child = self.lastChild(parent)
193 sibling = self.lastChild(parent)
234 sibling = self.lastChild(parent)
271 sibling = self.lastChild(parent)
434 sibling = self.lastChild(parent)
/external/webkit/Source/WebKit/chromium/src/
H A DWebNode.cpp113 WebNode WebNode::lastChild() const function in class:WebKit::WebNode
115 return WebNode(m_private->lastChild());
H A DWebAccessibilityObject.cpp163 WebAccessibilityObject WebAccessibilityObject::lastChild() const function in class:WebKit::WebAccessibilityObject
169 return WebAccessibilityObject(m_private->lastChild());
/external/webkit/Source/WebKit2/UIProcess/
H A DWebFrameProxy.h79 WebFrameProxy* lastChild() { return m_lastChild; } function in class:WebKit::WebFrameProxy
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DNestedMapData.java55 private NestedMapData lastChild = null; field in class:NestedMapData
113 data.prevSibling = sym.lastChild;
114 if (sym.lastChild != null) {
115 // Update previous lastChild to point to new child.
116 sym.lastChild.nextSibling = data;
121 sym.lastChild = data;
143 parent.lastChild = prevSibling;
/external/webkit/Source/JavaScriptCore/profiler/
H A DProfileNode.h102 ProfileNode* lastChild() const { return m_children.size() ? m_children.last().get() : 0; } function in class:JSC::ProfileNode
/external/webkit/Source/WebCore/svg/
H A DSVGElementInstance.h75 SVGElementInstance* lastChild() const { return m_lastChild; } function in class:WebCore::SVGElementInstance
/external/webkit/Source/WebKit/win/
H A DDOMCoreClasses.h148 virtual HRESULT STDMETHODCALLTYPE lastChild(
372 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMDocument
373 /* [retval][out] */ IDOMNode** result) { return DOMNode::lastChild(result); }
603 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMElement
604 /* [retval][out] */ IDOMNode** result) { return DOMNode::lastChild(result); }
H A DDOMCoreClasses.cpp171 HRESULT STDMETHODCALLTYPE DOMNode::lastChild( function in class:DOMNode
H A DDOMHTMLClasses.h228 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMHTMLDocument
229 /* [retval][out] */ IDOMNode **result) { return DOMDocument::lastChild(result); }
502 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMHTMLElement
503 /* [retval][out] */ IDOMNode **result) { return DOMElement::lastChild(result); }
761 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMHTMLFormElement
762 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::lastChild(result); }
1066 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMHTMLSelectElement
1067 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::lastChild(result); }
1390 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMHTMLOptionElement
1391 /* [retval][out] */ IDOMNode **result) { return DOMHTMLElement::lastChild(resul
1688 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMHTMLInputElement
2098 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMHTMLTextAreaElement
2423 virtual HRESULT STDMETHODCALLTYPE lastChild( function in class:DOMHTMLIFrameElement
[all...]
/external/libxml2/
H A DSAX2.c2473 xmlNodePtr lastChild; local
2493 lastChild = ctxt->node->last;
2503 if (lastChild == NULL) {
2504 lastChild = xmlSAX2TextNode(ctxt, ch, len);
2505 if (lastChild != NULL) {
2506 ctxt->node->children = lastChild;
2507 ctxt->node->last = lastChild;
2508 lastChild->parent = ctxt->node;
2509 lastChild->doc = ctxt->node->doc;
2517 int coalesceText = (lastChild !
2741 xmlNodePtr ret, lastChild; local
[all...]
/external/webkit/Source/WebCore/editing/
H A DReplaceSelectionCommand.cpp72 Node* lastChild() const;
193 Node *ReplacementFragment::lastChild() const function in class:WebCore::ReplacementFragment
195 return m_fragment ? m_fragment->lastChild() : 0;
317 node = container->lastChild();
324 node = node->lastChild();
414 m_lastLeafInserted = node->lastChild() ? node->lastChild() : node->traverseNextSibling();
1311 if (!fragment.firstChild() || fragment.firstChild() != fragment.lastChild() || !fragment.firstChild()->isTextNode())
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebelement.cpp619 \sa lastChild(), previousSibling(), nextSibling()
639 QWebElement QWebElement::lastChild() const function in class:QWebElement
643 for (Node* child = m_element->lastChild(); child; child = child->previousSibling()) {
655 \sa firstChild(), previousSibling(), lastChild()
673 \sa firstChild(), nextSibling(), lastChild()
/external/clang/lib/AST/
H A DASTDumper.cpp92 /// If true, prevents lastChild() from marking the node as the last child.
161 void lastChild();
360 void ASTDumper::lastChild() { function in class:ASTDumper
493 lastChild();
580 lastChild();
606 lastChild();
611 lastChild();
630 lastChild();
638 lastChild();
682 lastChild();
[all...]
/external/tinyxml/
H A Dtinyxml.h491 const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be null if there are no children.
492 TiXmlNode* LastChild() { return lastChild; }
674 TiXmlNode* lastChild; member in class:TiXmlNode
/external/tinyxml2/
H A Dtinyxml2.h490 const XMLNode* LastChild() const { return lastChild; }
597 XMLNode* lastChild; member in class:tinyxml2::XMLNode

Completed in 2613 milliseconds

12