/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/ |
D | AbstractGroupVisitor.java | 31 private AbstractGroupVisitor lastChild; field in AbstractGroupVisitor 66 lastChild = handleGroup(name); in visitGroup() 67 return lastChild; in visitGroup() 102 if (lastChild != null) { in finalizeLastChild() 103 lastChild.visitEnd(); in finalizeLastChild() 104 total.increment(lastChild.total); in finalizeLastChild() 105 lastChild = null; in finalizeLastChild()
|
/external/libxml2/ |
D | SAX2.c | 2508 xmlNodePtr lastChild; in xmlSAX2Text() local 2528 lastChild = ctxt->node->last; in xmlSAX2Text() 2538 if (lastChild == NULL) { in xmlSAX2Text() 2540 lastChild = xmlSAX2TextNode(ctxt, ch, len); in xmlSAX2Text() 2542 lastChild = xmlNewCDataBlock(ctxt->myDoc, ch, len); in xmlSAX2Text() 2543 if (lastChild != NULL) { in xmlSAX2Text() 2544 ctxt->node->children = lastChild; in xmlSAX2Text() 2545 ctxt->node->last = lastChild; in xmlSAX2Text() 2546 lastChild->parent = ctxt->node; in xmlSAX2Text() 2547 lastChild->doc = ctxt->node->doc; in xmlSAX2Text() [all …]
|
/external/skia/experimental/docs/ |
D | svgBackend.js | 75 while (svgRoot.lastChild) { 76 svgRoot.removeChild(svgRoot.lastChild); 216 while (svgPicture.lastChild) { 217 svgPicture.removeChild(svgPicture.lastChild);
|
/external/libusb/libusb/os/ |
D | haiku_pollfs.cpp | 222 WatchedEntry *lastChild = NULL; in EntryRemoved() local 225 if (lastChild) in EntryRemoved() 226 lastChild->fLink = child->fLink; in EntryRemoved() 236 lastChild = child; in EntryRemoved()
|
/external/skqp/experimental/docs/ |
D | svgBackend.js | 75 while (svgRoot.lastChild) { 76 svgRoot.removeChild(svgRoot.lastChild); 216 while (svgPicture.lastChild) { 217 svgPicture.removeChild(svgPicture.lastChild);
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
D | NestedMapData.java | 55 private NestedMapData lastChild = null; field in NestedMapData 113 data.prevSibling = sym.lastChild; in createChildNode() 114 if (sym.lastChild != null) { in createChildNode() 116 sym.lastChild.nextSibling = data; in createChildNode() 121 sym.lastChild = data; in createChildNode() 143 parent.lastChild = prevSibling; in severNode()
|
/external/markdown/markdown/ |
D | blockprocessors.py | 32 def lastChild(self, parent): member in 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/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 141 lastChild = 0; in TiXmlNode() 182 lastChild = 0; in Clear() 201 node->prev = lastChild; in LinkEndChild() 204 if ( lastChild ) in LinkEndChild() 205 lastChild->next = node; in LinkEndChild() 209 lastChild = node; in LinkEndChild() 288 assert( lastChild == afterThis ); in InsertAfterChild() 289 lastChild = node; in InsertAfterChild() 322 lastChild = node; in ReplaceChild() 350 lastChild = removeThis->prev; in RemoveChild() [all …]
|
D | tinyxml.h | 531 …const TiXmlNode* LastChild() const { return lastChild; } /// The last child of this node. Will be… in LastChild() 532 TiXmlNode* LastChild() { return lastChild; } in LastChild() 759 TiXmlNode* lastChild; variable
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | CommonTree.cs | 276 ITree lastChild = Children[Children.Count - 1]; in SetUnknownTokenBoundaries() 278 stopIndex = lastChild.TokenStopIndex; in SetUnknownTokenBoundaries()
|
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | CommonTree.cs | 208 CommonTree lastChild = (CommonTree)Children[Children.Count - 1]; in SetUnknownTokenBoundaries() 210 stopIndex = lastChild.TokenStopIndex; in SetUnknownTokenBoundaries()
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTree.java | 161 CommonTree lastChild = (CommonTree)children.get(children.size()-1); in setUnknownTokenBoundaries() local 163 stopIndex = lastChild.getTokenStopIndex(); in setUnknownTokenBoundaries()
|
/external/markdown/markdown/extensions/ |
D | def_list.py | 44 sibling = self.lastChild(parent) 51 sibling = self.lastChild(parent)
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemTemplateElement.java | 1437 ElemTemplateElement lastChild = null; in getLastChild() local 1442 lastChild = node; in getLastChild() 1445 return lastChild; in getLastChild() 1456 ElemTemplateElement lastChild = null; in getLastChildElem() local 1461 lastChild = node; in getLastChildElem() 1464 return lastChild; in getLastChildElem()
|
/external/python/cpython2/Lib/test/ |
D | test_minidom.py | 87 and root.lastChild is elem 98 and root.lastChild is nelem 479 and pi.lastChild is None 725 and root.firstChild is root.lastChild 752 and root.firstChild is not root.lastChild 753 and root.firstChild.nextSibling is root.lastChild 755 and root.lastChild.previousSibling is root.firstChild 756 and root.lastChild.nextSibling is None 772 and root.firstChild is root.lastChild 790 and root.firstChild is root.lastChild [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_minidom.py | 97 and root.lastChild is elem 108 and root.lastChild is nelem 545 and pi.lastChild is None 902 and root.firstChild is root.lastChild 929 and root.firstChild is not root.lastChild 930 and root.firstChild.nextSibling is root.lastChild 932 and root.lastChild.previousSibling is root.firstChild 933 and root.lastChild.nextSibling is None 949 and root.firstChild is root.lastChild 967 and root.firstChild is root.lastChild [all …]
|
/external/autotest/site_utils/rpm_control_system/ |
D | BeautifulSoup.py | 179 lastChild = self._lastRecursiveChild() 180 nextElement = lastChild.next 187 lastChild.next = None 199 lastChild = self 200 while hasattr(lastChild, 'contents') and lastChild.contents: 201 lastChild = lastChild.contents[-1] 202 return lastChild
|
/external/okhttp/website/static/ |
D | html5shiv.min.js | 6 c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|…
|
/external/antlr/runtime/ObjC/Framework/ |
D | CommonTree.m | 294 CommonTree *lastChild = (CommonTree *)[children objectAtIndex:[children count]-1]; 296 stopIndex = [lastChild getTokenStopIndex];
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
D | group-constructors.js | 104 get lastChild() { getter in constructor
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMDocumentImpl.java | 1066 int lastChild = NULL; in getLastChild() local 1069 lastChild = nextkid; in getLastChild() 1071 return lastChild | m_docHandle; in getLastChild()
|
D | DTMDefaultBase.java | 1027 int lastChild = DTM.NULL; in getLastChild() local 1031 lastChild = child; in getLastChild() 1035 return makeNodeHandle(lastChild); in getLastChild()
|
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/ |
D | ShadowDOM.js | 1801 var previousNode = refWrapper ? refWrapper.previousSibling : this.lastChild; 1849 var thisLastChild = this.lastChild; 1897 if (this.lastChild === oldChildWrapper) this.lastChild_ = nodes[nodes.length - 1]; 1931 get lastChild() { getter 1932 return this.lastChild_ !== undefined ? this.lastChild_ : wrap(unsafeUnwrap(this).lastChild); 2252 return backwardsElement(this.lastChild); 2883 while (d.lastChild) { 2884 d.removeChild(d.lastChild); 3256 get lastChild() { getter 3257 return wrap(unsafeUnwrap(this).lastChild); [all …]
|
D | ShadowDOM.min.js | 11 …lastChild,c=!this.invalidateShadowRenderer()&&!g(e);if(o=c?a(e):i(e,this,s,n),c)f(this,e),m(this),… 12 …lastChild)},get childElementCount(){for(var e=0,t=this.firstElementChild;t;t=t.nextElementSibling)… method in t
|
D | webcomponents.min.js | 11 …lastChild,c=!this.invalidateShadowRenderer()&&!g(e);if(o=c?a(e):i(e,this,s,n),c)h(this,e),w(this),… 12 …lastChild)},get childElementCount(){for(var e=0,t=this.firstElementChild;t;t=t.nextElementSibling)… method in t
|