/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMDefaultBase.java | 724 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/ |
D | deMemPool.c | 92 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/ |
D | tinyxml.cpp | 148 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/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/ |
D | scan.js | 12 while (parent.firstChild) { 13 parent.removeChild(parent.firstChild); 55 scannedImages.insertBefore(scannedImage, scannedImages.firstChild);
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxml.cpp | 140 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/ |
D | test_minidom.py | 86 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/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/ |
D | HumanGenericsTest.java | 343 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/v8/tools/turbolizer/ |
D | code-view.js | 39 var lineListDiv = view.divNode.firstChild.firstChild.childNodes; 142 var lineListDiv = view.divNode.firstChild.firstChild.childNodes;
|
D | text-view.js | 53 while (view.textListNode.firstChild) { 54 view.textListNode.removeChild(view.textListNode.firstChild);
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
D | NestedMapData.java | 53 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/tinyxml2/ |
D | tinyxml2.cpp | 546 firstChild( 0 ), lastChild( 0 ), in XMLNode() 572 while( firstChild ) { in DeleteChildren() 573 XMLNode* node = firstChild; in DeleteChildren() 578 firstChild = lastChild = 0; in DeleteChildren() 585 if ( child == firstChild ) in Unlink() 586 firstChild = firstChild->next; in Unlink() 610 TIXMLASSERT( firstChild ); in InsertEndChild() 619 TIXMLASSERT( firstChild == 0 ); in InsertEndChild() 620 firstChild = lastChild = addThis; in InsertEndChild() 632 if ( firstChild ) { in InsertFirstChild() [all …]
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/ |
D | HumanTest.java | 392 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/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | CommonTree.cs | 275 ITree firstChild = Children[0]; in SetUnknownTokenBoundaries() 277 startIndex = firstChild.TokenStartIndex; in SetUnknownTokenBoundaries()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | CommonTree.cs | 207 CommonTree firstChild = (CommonTree)Children[0]; in SetUnknownTokenBoundaries() 209 startIndex = firstChild.TokenStartIndex; in SetUnknownTokenBoundaries()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTree.java | 150 CommonTree firstChild = (CommonTree)children.get(0); in setUnknownTokenBoundaries() local 152 startIndex = firstChild.getTokenStartIndex(); in setUnknownTokenBoundaries()
|
/external/v8/tools/sodium/ |
D | sodium.js | 213 var pc = element.firstChild.innerText; 353 var sourceLineContainer = sourceDivElement.firstChild.firstChild; 355 var current = sourceLineContainer.firstChild;
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/ |
D | sort.js | 132 for (var c = table.tHead.firstChild.firstChild; c; c = c.nextSibling) {
|
/external/skia/src/xml/ |
D | SkXMLWriter.cpp | 62 bool firstChild = level > 0 && !fElems[level-1]->fHasChildren; in doStart() local 63 if (firstChild) { in doStart() 68 return firstChild; in doStart()
|
/external/autotest/client/site_tests/power_LoadTest/extension/ |
D | prevent_unload_popup.js | 9 document.documentElement.insertBefore(script, document.documentElement.firstChild);
|
/external/okhttp/website/static/ |
D | prettify.js | 6 …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/deqp/framework/delibs/coding_guidelines/ |
D | prettify.js | 7 …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/slf4j/slf4j-site/src/site/pages/js/ |
D | prettify.js | 7 …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/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
D | SAX2DTM.java | 524 int firstChild = _firstch(identity); in dispatchCharactersEvents() local 526 if (DTM.NULL != firstChild) in dispatchCharactersEvents() 532 identity = firstChild; in dispatchCharactersEvents() 1267 int firstChild = _firstch(identity); in getStringValue() local 1269 if (DTM.NULL != firstChild) in getStringValue() 1275 identity = firstChild; in getStringValue()
|
/external/doclava/res/assets/templates/assets/ |
D | jquery-resizable.min.js | 12 …firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.… 19 …firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length}…
|
/external/libjpeg-turbo/doc/html/search/ |
D | search.js | 271 var node = child.firstChild; 448 var element = parentElement.firstChild; 459 element = element.firstChild;
|