Home
last modified time | relevance | path

Searched refs:childNode (Results 1 – 13 of 13) sorted by relevance

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
DPluralResourceLoader.java41 Node childNode = childNodes.item(j); in processNode() local
42 String value = childNode.getTextContent(); in processNode()
43 String quantity = childNode.getAttributes().getNamedItem("quantity").getTextContent(); in processNode()
DStringArrayResourceLoader.java34 Node childNode = childNodes.item(j); in processNode() local
36 String value = childNode.getTextContent(); in processNode()
/external/swiftshader/third_party/LLVM/lib/Analysis/
DPathNumbering.cpp430 BallLarusNode* childNode; in buildEdge() local
433 childNode = succNode; in buildEdge()
435 childNode = addNode(succBB); in buildEdge()
436 inDag[succBB] = childNode; in buildEdge()
438 addEdge(currentNode, childNode, duplicateCount); in buildEdge()
439 dfsStack.push(childNode); in buildEdge()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMBuilder.java481 Node childNode; in characters() local
482 childNode = m_currentNode != null ? m_currentNode.getLastChild(): null; in characters()
483 if( childNode != null && childNode.getNodeType() == Node.TEXT_NODE ){ in characters()
484 ((Text)childNode).appendData(s); in characters()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPNodeUtils.java168 XMPNode childNode = parent.findChildByName(childName); in findChildNode() local
170 if (childNode == null && createNodes) in findChildNode()
173 childNode = new XMPNode(childName, options); in findChildNode()
174 childNode.setImplicit(true); in findChildNode()
175 parent.addChild(childNode); in findChildNode()
178 assert childNode != null || !createNodes; in findChildNode()
180 return childNode; in findChildNode()
DParseRDF.java910 XMPNode childNode = addChildNode(xmp, xmpParent, xmlNode, "", isTopLevel); in rdf_EmptyPropertyElement() local
915 childNode.setValue(valueNode != null ? valueNode.getNodeValue() : ""); in rdf_EmptyPropertyElement()
919 childNode.getOptions().setURI(true); in rdf_EmptyPropertyElement()
924 childNode.getOptions().setStruct(true); in rdf_EmptyPropertyElement()
947 addQualifierNode(childNode, "rdf:resource", attribute.getNodeValue()); in rdf_EmptyPropertyElement()
954 childNode, attribute.getNodeName(), attribute.getNodeValue()); in rdf_EmptyPropertyElement()
958 addQualifierNode (childNode, XML_LANG, attribute.getNodeValue()); in rdf_EmptyPropertyElement()
962 addChildNode (xmp, childNode, attribute, attribute.getNodeValue(), false); in rdf_EmptyPropertyElement()
DXMPNormalizer.java417 private static void transplantArrayItemAlias(Iterator propertyIt, XMPNode childNode, in transplantArrayItemAlias() argument
422 if (childNode.getOptions().getHasLanguage()) in transplantArrayItemAlias()
429 childNode.addQualifier(langQual); in transplantArrayItemAlias()
433 childNode.setName(XMPConst.ARRAY_ITEM_NAME); in transplantArrayItemAlias()
434 baseArray.addChild(childNode); in transplantArrayItemAlias()
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/
DRepresenter.java186 for (Node childNode : snode.getValue()) { in checkGlobalTag()
190 if (childNode.getNodeId() == NodeId.mapping) { in checkGlobalTag()
191 childNode.setTag(Tag.MAP); in checkGlobalTag()
/external/icu/icu4c/source/i18n/
Dplurrule.cpp812 childNode=NULL; in OrConstraint()
817 if ( other.childNode == NULL ) { in OrConstraint()
818 this->childNode = NULL; in OrConstraint()
821 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint()
832 if (childNode!=NULL) { in ~OrConstraint()
833 delete childNode; in ~OrConstraint()
848 U_ASSERT(curOrConstraint->childNode == NULL); in add()
849 curOrConstraint->childNode = new AndConstraint(); in add()
851 return curOrConstraint->childNode; in add()
861 AndConstraint* andRule = orRule->childNode; in isFulfilled()
[all …]
Dplurrule_impl.h247 AndConstraint *childNode;
/external/deqp/framework/common/
DtcuTestHierarchyIterator.cpp217 TestNode* childNode = iter.children[iter.curChildNdx]; in next() local
218 m_sessionStack.push_back(NodeIter(childNode)); in next()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
DRobolectricConfig.java149 Node childNode = node.getChildNodes().item(i); in getChildrenTags() local
150 if (childNode.getNodeName().equalsIgnoreCase(tagName)) { in getChildrenTags()
151 children.add(childNode); in getChildrenTags()
/external/skia/experimental/svg/model/
DSkSVGDOM.cpp405 sk_sp<SkSVGNode> childNode = construct_svg_node(dom, localCtx, child); in construct_svg_node() local
406 if (childNode) { in construct_svg_node()
407 node->appendChild(std::move(childNode)); in construct_svg_node()