Home
last modified time | relevance | path

Searched refs:firstChild (Results 1 – 25 of 104) sorted by relevance

12345

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/guide/
Dexample-supervision-01.kt14 val firstChild = launch(CoroutineExceptionHandler { _, _ -> }) { in <lambda>() constant
20 firstChild.join() in <lambda>()
31 firstChild.join() in <lambda>()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDefaultBase.java724 int firstChild = _firstch(index); in dumpDTM() local
726 if (DTM.NULL == firstChild) in dumpDTM()
728 else if (NOTPROCESSED == firstChild) in dumpDTM()
731 ps.println("First child: " + firstChild); in dumpDTM()
883 int firstChild = _firstch(identity); in hasChildNodes() local
885 return firstChild != DTM.NULL; in hasChildNodes()
973 int firstChild = _firstch(identity); in getFirstChild() local
975 return makeNodeHandle(firstChild); in getFirstChild()
989 int firstChild, eType; in getTypedFirstChild() local
991 for (firstChild = _firstch(makeNodeIdentity(nodeHandle)); in getTypedFirstChild()
[all …]
/external/deqp/framework/delibs/depool/
DdeMemPool.c92 deMemPool* firstChild; /*!< Pointer to first child pool in linked list. */ member
200 if (parent->firstChild) parent->firstChild->prevPool = pool; in createPoolInternal()
201 pool->nextPool = parent->firstChild; in createPoolInternal()
202 parent->firstChild = pool; in createPoolInternal()
316 iter = pool->firstChild; in deMemPool_destroy()
333 if (parent->firstChild == pool) in deMemPool_destroy()
334 parent->firstChild = pool->nextPool; in deMemPool_destroy()
401 for (child = pool->firstChild; child; child = child->nextPool) in deMemPool_getNumAllocatedBytes()
419 for (child = pool->firstChild; child; child = child->nextPool) in deMemPool_getCapacity()
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/src/
Dstyle-util.js143 scope.insertBefore(placeHolder, after || scope.firstChild);
156 target.firstChild;
378 /** @type {!HTMLTemplateElement} */ (element).content.firstChild :
379 element.firstChild;
408 /** @type {!HTMLTemplateElement} */ (element).content.firstChild :
409 element.firstChild;
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
Dscan.js12 while (parent.firstChild) {
13 parent.removeChild(parent.firstChild);
55 scannedImages.insertBefore(scannedImage, scannedImages.firstChild);
/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.cpp140 firstChild = 0; in TiXmlNode()
149 TiXmlNode* node = firstChild; in ~TiXmlNode()
171 TiXmlNode* node = firstChild; in Clear()
181 firstChild = 0; in Clear()
207 firstChild = node; // it was an empty list. in LinkEndChild()
255 assert( firstChild == beforeThis ); in InsertBeforeChild()
256 firstChild = node; in InsertBeforeChild()
327 firstChild = node; in ReplaceChild()
355 firstChild = removeThis->next; in RemoveChild()
364 for ( node = firstChild; node; node = node->next ) in FirstChild()
[all …]
/external/python/cpython2/Lib/test/
Dtest_minidom.py86 and root.firstChild is nelem
470 pi = dom.documentElement.firstChild
478 and pi.firstChild is None
702 pi = doc.firstChild
725 and root.firstChild is root.lastChild
726 and root.firstChild.data == "firstsecond"
751 and root.firstChild.data == "firstsecond"
752 and root.firstChild is not root.lastChild
753 and root.firstChild.nextSibling is root.lastChild
754 and root.firstChild.previousSibling is None
[all …]
/external/python/cpython3/Lib/test/
Dtest_minidom.py96 and root.firstChild is nelem
536 pi = dom.documentElement.firstChild
544 and pi.firstChild is None
828 pi = doc.firstChild
869 self.assertEqual(clone.documentElement.firstChild.wholeText,
902 and root.firstChild is root.lastChild
903 and root.firstChild.data == "firstsecond"
928 and root.firstChild.data == "firstsecond"
929 and root.firstChild is not root.lastChild
930 and root.firstChild.nextSibling is root.lastChild
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
DHumanGenericsTest.java343 HumanGen firstChild = children2.iterator().next(); in testChildrenSetAsRoot() local
345 HumanGen father2 = firstChild.getFather(); in testChildrenSetAsRoot()
347 assertEquals("Mother", firstChild.getMother().getName()); in testChildrenSetAsRoot()
349 assertSame(father2.getPartner(), firstChild.getMother()); in testChildrenSetAsRoot()
350 assertSame(father2, firstChild.getMother().getPartner()); in testChildrenSetAsRoot()
382 HumanGen2 firstChild = firstEntry.getKey(); in testChildrenMapAsRoot() local
384 HumanGen2 father2 = firstChild.getFather(); in testChildrenMapAsRoot()
386 assertEquals("Mother", firstChild.getMother().getName()); in testChildrenMapAsRoot()
388 assertSame(father2.getPartner(), firstChild.getMother()); in testChildrenMapAsRoot()
389 assertSame(father2, firstChild.getMother().getPartner()); in testChildrenMapAsRoot()
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DNestedMapData.java53 private NestedMapData firstChild = null; field in NestedMapData
102 NestedMapData curr = sym.firstChild; in createChildNode()
119 sym.firstChild = data; in createChildNode()
138 parent.firstChild = nextSibling; in severNode()
348 NestedMapData curr = sym.firstChild; in getChildNode()
517 for (NestedMapData child = firstChild; child != null; child = child.nextSibling) { in optimize()
604 return new ChildrenIterator(followSymLinkToTheBitterEnd().firstChild); in iterator()
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
DHumanTest.java392 Human firstChild = children2.iterator().next(); in testChildrenSetAsRoot() local
394 Human father2 = firstChild.getFather(); in testChildrenSetAsRoot()
396 assertEquals("Mother", firstChild.getMother().getName()); in testChildrenSetAsRoot()
398 assertSame(father2.getPartner(), firstChild.getMother()); in testChildrenSetAsRoot()
399 assertSame(father2, firstChild.getMother().getPartner()); in testChildrenSetAsRoot()
430 Human2 firstChild = firstEntry.getKey(); in testChildrenMapAsRoot() local
432 Human2 father2 = firstChild.getFather(); in testChildrenMapAsRoot()
434 assertEquals("Mother", firstChild.getMother().getName()); in testChildrenMapAsRoot()
436 assertSame(father2.getPartner(), firstChild.getMother()); in testChildrenMapAsRoot()
437 assertSame(father2, firstChild.getMother().getPartner()); in testChildrenMapAsRoot()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DCommonTree.cs275 ITree firstChild = Children[0]; in SetUnknownTokenBoundaries()
277 startIndex = firstChild.TokenStartIndex; in SetUnknownTokenBoundaries()
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DCommonTree.cs207 CommonTree firstChild = (CommonTree)Children[0]; in SetUnknownTokenBoundaries()
209 startIndex = firstChild.TokenStartIndex; in SetUnknownTokenBoundaries()
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DCommonTree.java160 CommonTree firstChild = (CommonTree)children.get(0); in setUnknownTokenBoundaries() local
162 startIndex = firstChild.getTokenStartIndex(); in setUnknownTokenBoundaries()
/external/dokka/core/src/main/kotlin/Formats/
DDacHtmlFormat.kt105 val firstChild = it.children.first() in fullMemberDocs() constant
106 if (firstChild is ContentBlock && in fullMemberDocs()
107 firstChild.children.size == 3 && in fullMemberDocs()
108 firstChild.children[0] is NodeRenderContent && in fullMemberDocs()
109 firstChild.children[1] is ContentSymbol && in fullMemberDocs()
110 firstChild.children[2] is ContentText) { in fullMemberDocs()
119 metaMarkup(listOf(firstChild.children[0])) in fullMemberDocs()
122 metaMarkup(listOf(firstChild)) in fullMemberDocs()
/external/chromium-trace/catapult/third_party/polymer/components/webcomponentsjs/
DShadowDOM.js771 for (var child = node.firstChild; child; child = child.nextSibling) {
1632 for (var child = node.firstChild; child; child = child.nextSibling) {
1695 var childWrapper = wrapper.firstChild;
1708 var child = node.firstChild;
1733 for (var child = node.firstChild; child; child = child.nextSibling) {
1738 for (var child = node.content.firstChild; child; child = child.nextSibling) {
1812 if (this.firstChild_ === undefined) this.firstChild_ = this.firstChild;
1834 for (var ieChild = this.firstChild; ieChild; ieChild = ieChild.nextSibling) {
1848 var thisFirstChild = this.firstChild;
1896 if (this.firstChild === oldChildWrapper) this.firstChild_ = nodes[0];
[all …]
DShadowDOM.min.js11firstChild;o;o=o.nextSibling)n(o,t)}}function r(n){if(n instanceof e.wrappers.Window,n.treeScope_)…
12firstChild)},get lastElementChild(){return n(this.lastChild)},get childElementCount(){for(var e=0,… method in t
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
Dsort.js132 for (var c = table.tHead.firstChild.firstChild; c; c = c.nextSibling) {
/external/skia/src/xml/
DSkXMLWriter.cpp64 bool firstChild = level > 0 && !fElems[level-1]->fHasChildren; in doStart() local
65 if (firstChild) { in doStart()
70 return firstChild; in doStart()
/external/skqp/src/xml/
DSkXMLWriter.cpp64 bool firstChild = level > 0 && !fElems[level-1]->fHasChildren; in doStart() local
65 if (firstChild) { in doStart()
70 return firstChild; in doStart()
/external/autotest/client/site_tests/power_LoadTest/extension/
Dprevent_unload_popup.js9 document.documentElement.insertBefore(script, document.documentElement.firstChild);
/external/okhttp/website/static/
Dprettify.js6 …nction g(a){var c=a.nodeType;if(c==1){if(!b.test(a.className)){for(c=a.firstChild;c;c=c.nextSiblin…
7 …{a:d,e:a},g(a),b.push.apply(b,a.g))}function U(a){for(var d=void 0,g=a.firstChild;g;g=g.nextSiblin…
13 …a.nodeName)s(a),a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSiblin…
14 …m=/\r\n?|\n/,j=a.ownerDocument,k=j.createElement("li");a.firstChild;)k.appendChild(a.firstChild);f…
15 …x(0,d-1|0)||0,i=0,n=c.length;i<n;++i)k=c[i],k.className="L"+(i+d)%10,k.firstChild||k.appendChild(j…
26 …var b=document.createElement("div");b.innerHTML="<pre>"+a+"</pre>";b=b.firstChild;g&&J(b,g,!0);K({…
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/struct/
DTestParentChildReferences.java71 public FullTreeNode firstChild; field in TestParentChildReferences.FullTreeNode
242 root.firstChild = child1; in testFullRefs()
251 FullTreeNode resultChild = resultNode.firstChild; in testFullRefs()
/external/python/httplib2/doc/html/_static/
Djquery.js230 while ( elem.firstChild )
231 elem = elem.firstChild;
262 this.insertBefore( elem, this.firstChild );
518 first = fragment.firstChild;
661 head.insertBefore( script, head.firstChild );
923 div.firstChild && div.firstChild.childNodes :
938 div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
1184 siblings: function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},
1185 children: function(elem){return jQuery.sibling(elem.firstChild);},
1256 while ( this.firstChild )
[all …]
/external/jackson-annotations/docs/javadoc/2.11/
Dscript.js20 var spanNode = sNode.firstChild;

12345