Home
last modified time | relevance | path

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

123

/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/tinyxml/
Dtinyxml.cpp148 firstChild = 0; in TiXmlNode()
157 TiXmlNode* node = firstChild; in ~TiXmlNode()
178 TiXmlNode* node = firstChild; in Clear()
188 firstChild = 0; in Clear()
203 firstChild = node; // it was an empty list. in LinkEndChild()
238 assert( firstChild == beforeThis ); in InsertBeforeChild()
239 firstChild = node; in InsertBeforeChild()
292 firstChild = node; in ReplaceChild()
316 firstChild = removeThis->next; in RemoveChild()
325 for ( node = firstChild; node; node = node->next ) in FirstChild()
[all …]
/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/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/python/cpython3/Lib/test/
Dtest_minidom.py95 and root.firstChild is nelem
535 pi = dom.documentElement.firstChild
543 and pi.firstChild is None
827 pi = doc.firstChild
868 self.assertEqual(clone.documentElement.firstChild.wholeText,
901 and root.firstChild is root.lastChild
902 and root.firstChild.data == "firstsecond"
927 and root.firstChild.data == "firstsecond"
928 and root.firstChild is not root.lastChild
929 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/v8/tools/sodium/
Dsodium.js213 var pc = element.firstChild.innerText;
353 var sourceLineContainer = sourceDivElement.firstChild.firstChild;
355 var current = sourceLineContainer.firstChild;
/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/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/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/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/autotest/client/site_tests/power_LoadTest/extension/
Dprevent_unload_popup.js9 document.documentElement.insertBefore(script, document.documentElement.firstChild);
/external/slf4j/slf4j-site/src/site/pages/js/
Dprettify.js7 …ontinue;a.push(" ");z(g,a)}a.push(">");for(var e=b.firstChild;e;e=e.nextSibling)z(e,a);if(b.firstC…
8 …)}if(F){var c=b.innerHTML;if(S(b))c=E(c);return c}var d=[];for(var g=b.firstChild;g;g=g.nextSiblin…
/external/deqp/framework/delibs/coding_guidelines/
Dprettify.js7 …ontinue;a.push(" ");z(g,a)}a.push(">");for(var e=b.firstChild;e;e=e.nextSibling)z(e,a);if(b.firstC…
8 …)}if(F){var c=b.innerHTML;if(S(b))c=E(c);return c}var d=[];for(var g=b.firstChild;g;g=g.nextSiblin…
/external/subsampling-scale-image-view/docs/javadoc/
Dscript.js20 var spanNode = sNode.firstChild;
/external/libjpeg-turbo/java/doc/
Dscript.js20 var spanNode = sNode.firstChild;
/external/doclava/res/assets/templates/assets/
Djquery-resizable.min.js12firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.…
19firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length}…

123