/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/ |
D | XLIFF2ICUConverter.java | 827 …for(Node transUnit = node.getFirstChild(); transUnit!=null; transUnit = transUnit.getNextSibling()… in parseResourceString() 837 … currentSource.val = currentTarget.val = transUnit.getFirstChild().getNodeValue(); in parseResourceString() 843 transUnit.getFirstChild().getNodeValue(); in parseResourceString() 846 currentTarget.val = transUnit.getFirstChild().getNodeValue(); in parseResourceString() 861 …for(Node transUnit = node.getFirstChild(); transUnit!=null; transUnit = transUnit.getNextSibling()… in parseResourceInt() 872 … currentSource.val = currentTarget.val = transUnit.getFirstChild().getNodeValue(); in parseResourceInt() 877 transUnit.getFirstChild().getNodeValue(); in parseResourceInt() 880 currentTarget.val = transUnit.getFirstChild().getNodeValue(); in parseResourceInt() 895 …for(Node transUnit = node.getFirstChild(); transUnit!=null; transUnit = transUnit.getNextSibling()… in parseResourceAlias() 906 … currentSource.val = currentTarget.val = transUnit.getFirstChild().getNodeValue(); in parseResourceAlias() [all …]
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | ChildIterator.java | 73 return dtm.getFirstChild(current); in asNode() 92 ? m_cdtm.getFirstChild(m_context) in nextNode()
|
/external/skia/src/xml/ |
D | SkDOM.cpp | 31 if ((node = dom.getFirstChild(node)) != nullptr) in parse() 82 const SkDOM::Node* SkDOM::getFirstChild(const Node* node, const char name[]) const in getFirstChild() function in SkDOM 347 node = dom.getFirstChild(node, nullptr); in walk_dom() 388 node = this->getFirstChild(node, elem); in countChildren() 508 SkASSERT(dom.getFirstChild(root, "elem1")); in UnitTest() 509 SkASSERT(!dom.getFirstChild(root, "subelem1")); in UnitTest()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
D | SmaliCompositeElement.java | 72 for (PsiElement cur = getFirstChild(); cur != null; cur = cur.getNextSibling()) { in findChildrenByClass() 81 for (PsiElement cur = getFirstChild(); cur != null; cur = cur.getNextSibling()) { in findChildByClass()
|
/external/skia/src/views/animated/ |
D | SkStaticTextView.cpp | 181 if ((node = dom.getFirstChild(node, "paint")) != nullptr && in onInflate() 182 (node = dom.getFirstChild(node, "screenplay")) != nullptr) in onInflate()
|
/external/skia/tests/ |
D | SVGDeviceTest.cpp | 32 const SkDOM::Node* textElem = dom.getFirstChild(root, "text"); in check_text_node() 39 const SkDOM::Node* textNode= dom.getFirstChild(textElem); in check_text_node()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMChildIterNodeList.java | 79 m_firstChild=parentDTM.getFirstChild(parentHandle); in DTMChildIterNodeList()
|
D | DTMTreeWalker.java | 115 int nextNode = m_dtm.getFirstChild(pos); in traverse() 168 int nextNode = m_dtm.getFirstChild(pos); in traverse()
|
D | DTMDocumentImpl.java | 999 return(getFirstChild(nodeHandle) != NULL); in hasChildNodes() 1010 public int getFirstChild(int nodeHandle) { in getFirstChild() method in DTMDocumentImpl 1067 for (int nextkid = getFirstChild(nodeHandle); nextkid != NULL; in getLastChild() 1206 for (int nextkid = getFirstChild(parent); nextkid != nodeHandle; in getPreviousSibling()
|
D | DTMNodeProxy.java | 379 public final Node getFirstChild() in getFirstChild() method in DTMNodeProxy 382 int newnode = dtm.getFirstChild(node); in getFirstChild() 548 return (DTM.NULL != dtm.getFirstChild(node)); in hasChildNodes() 594 for(int kidhandle=dtm.getFirstChild(dochandle); in getDocumentElement()
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
D | FuncDoclocation.java | 58 whereNode = dtm.getFirstChild(whereNode); in execute()
|
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/ |
D | _base.py | 132 def getFirstChild(self, node): member in NonRecursiveTreeWalker 178 firstChild = self.getFirstChild(currentNode)
|
D | dom.py | 36 def getFirstChild(self, node): member in TreeWalker
|
D | etree.py | 79 def getFirstChild(self, node): member in getETreeBuilder.TreeWalker
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugInfoEntry.cpp | 63 const DWARFDebugInfoEntryMinimal *child = getFirstChild(); in dump() 360 const DWARFDebugInfoEntryMinimal *Child = getFirstChild(); in collectChildrenAddressRanges() 447 const DWARFDebugInfoEntryMinimal *Child = DIE->getFirstChild(); in getInlinedChainForAddress()
|
/external/skia/include/xml/ |
D | SkDOM.h | 48 const Node* getFirstChild(const Node*, const char elem[] = NULL) const;
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | TreeWalker.java | 147 Node nextNode = pos.getFirstChild(); in traverse() 201 Node nextNode = pos.getFirstChild(); in traverse()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | TreeWalker.java | 179 Node nextNode = pos.getFirstChild(); in traverseFragment() 232 Node nextNode = pos.getFirstChild(); in traverse()
|
D | DOMHelper.java | 431 Node child = parent.getFirstChild(); in isNodeAfterSibling() 1210 for (Node node = elem.getFirstChild(); null != node; in locateAttrParent() 1319 for (Node child = node.getFirstChild(); null != child; in getNodeData()
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
D | DWARFDebugInfoEntry.h | 72 const DWARFDebugInfoEntryMinimal *getFirstChild() const { in getFirstChild() function
|
/external/skia/src/views/ |
D | SkParsePaint.cpp | 16 if ((node = dom.getFirstChild(node, "shader")) == nullptr) in inflate_shader()
|
/external/smali/smalidea/src/test/java/org/jf/smalidea/findUsages/ |
D | UsageTypeTest.java | 45 PsiReference reference = psiFile.getFirstChild().findReferenceAt(index); in doTest()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/ |
D | DOM2DTM.java | 349 next = pos.getFirstChild(); in nextNode() 925 for (Node child = node.getFirstChild(); null != child; in getNodeData() 1208 n=n.getFirstChild(); in logicalNextDOMTextNode() 1667 for (Node child = node.getFirstChild(); null != child; in dispatchNodeData()
|
/external/autotest/frontend/client/src/autotest/common/table/ |
D | FragmentedTable.java | 57 Element tbody = DOM.getFirstChild(getElement()); in updateBodyElems()
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemCopyOf.java | 167 for (int child = dtm.getFirstChild(pos); child != DTM.NULL; in execute()
|