/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | PathNumbering.cpp | 430 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/ |
D | DOMBuilder.java | 481 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/ |
D | XMPNodeUtils.java | 168 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()
|
D | ParseRDF.java | 910 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()
|
D | XMPNormalizer.java | 417 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/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/ |
D | Node.java | 341 protected void setAsParentNodeOf(Node childNode) { in setAsParentNodeOf() argument 342 if (childNode != null) { in setAsParentNodeOf() 343 childNode.setParentNode(this); in setAsParentNodeOf()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/ |
D | Node.java | 314 protected void setAsParentNodeOf(Node childNode) { in setAsParentNodeOf() argument 315 if (childNode != null) { in setAsParentNodeOf() 316 childNode.setParentNode(this); in setAsParentNodeOf()
|
/external/icu/icu4c/source/i18n/ |
D | plurrule.cpp | 851 if ( other.childNode != nullptr ) { in OrConstraint() 852 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint() 853 if (this->childNode == nullptr) { in OrConstraint() 871 delete childNode; in ~OrConstraint() 872 childNode = nullptr; in ~OrConstraint() 888 U_ASSERT(curOrConstraint->childNode == nullptr); in add() 889 curOrConstraint->childNode = new AndConstraint(); in add() 890 if (curOrConstraint->childNode == nullptr) { in add() 894 return curOrConstraint->childNode; in add() 904 AndConstraint* andRule = orRule->childNode; in isFulfilled() [all …]
|
D | plurrule_impl.h | 334 AndConstraint *childNode = nullptr;
|
/external/catch2/include/reporters/ |
D | catch_reporter_junit.cpp | 194 for( auto const& childNode : sectionNode.childSections ) in writeSection() local 196 writeSection( name, "", *childNode ); in writeSection() 198 writeSection( className, name, *childNode ); in writeSection()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/ |
D | Representer.java | 186 for (Node childNode : snode.getValue()) { in checkGlobalTag() 190 if (childNode.getNodeId() == NodeId.mapping) { in checkGlobalTag() 191 childNode.setTag(Tag.MAP); in checkGlobalTag()
|
/external/skqp/modules/skottie/src/ |
D | SkottieLayer.cpp | 70 sk_sp<sksg::RenderNode> childNode) { in AttachMask() argument 71 if (!jmask) return childNode; in AttachMask() 131 return childNode; in AttachMask() 152 return sksg::ClipEffect::Make(std::move(childNode), std::move(clip_node), true); in AttachMask() 171 return sksg::MaskEffect::Make(std::move(childNode), std::move(maskNode)); in AttachMask()
|
D | Skottie.cpp | 168 sk_sp<sksg::RenderNode> childNode) const { in attachOpacity() 169 if (!childNode) in attachOpacity() 172 auto opacityNode = sksg::OpacityEffect::Make(childNode); in attachOpacity() 182 return (bound || dispatched) ? std::move(opacityNode) : childNode; in attachOpacity()
|
/external/skia/modules/skottie/src/ |
D | SkottieLayer.cpp | 70 sk_sp<sksg::RenderNode> childNode) { in AttachMask() argument 71 if (!jmask) return childNode; in AttachMask() 131 return childNode; in AttachMask() 152 return sksg::ClipEffect::Make(std::move(childNode), std::move(clip_node), true); in AttachMask() 171 return sksg::MaskEffect::Make(std::move(childNode), std::move(maskNode)); in AttachMask()
|
D | Skottie.cpp | 174 sk_sp<sksg::RenderNode> childNode) const { in attachOpacity() 175 if (!childNode) in attachOpacity() 178 auto opacityNode = sksg::OpacityEffect::Make(childNode); in attachOpacity() 188 return (bound || dispatched) ? std::move(opacityNode) : childNode; in attachOpacity()
|
/external/deqp/framework/common/ |
D | tcuTestHierarchyIterator.cpp | 217 TestNode* childNode = iter.children[iter.curChildNdx]; in next() local 218 m_sessionStack.push_back(NodeIter(childNode)); in next()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/ |
D | NodeList.java | 532 private void setAsParentNodeOf(Node childNode) { in setAsParentNodeOf() argument 533 if (childNode != null) { in setAsParentNodeOf() 534 childNode.setParentNode(getParentNodeForChildren()); in setAsParentNodeOf()
|
D | Node.java | 396 protected void setAsParentNodeOf(Node childNode) { in setAsParentNodeOf() argument 397 if (childNode != null) { in setAsParentNodeOf() 398 childNode.setParentNode(getParentNodeForChildren()); in setAsParentNodeOf()
|
/external/skqp/experimental/svg/model/ |
D | SkSVGDOM.cpp | 446 sk_sp<SkSVGNode> childNode = construct_svg_node(dom, localCtx, child); in construct_svg_node() local 447 if (childNode) { in construct_svg_node() 448 node->appendChild(std::move(childNode)); in construct_svg_node()
|
/external/skia/experimental/svg/model/ |
D | SkSVGDOM.cpp | 446 sk_sp<SkSVGNode> childNode = construct_svg_node(dom, localCtx, child); in construct_svg_node() local 447 if (childNode) { in construct_svg_node() 448 node->appendChild(std::move(childNode)); in construct_svg_node()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/ |
D | com_github_javaparser_ast_Node.txt | 77 Line 342) childNode != null ==> boolean 78 Line 343) childNode.setParentNode(this) ==> void
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/ |
D | AndroidManifest.java | 527 Node childNode = node.getChildNodes().item(i); in getChildrenTags() local 528 if (childNode.getNodeName().equalsIgnoreCase(tagName)) { in getChildrenTags() 529 children.add(childNode); in getChildrenTags()
|
/external/cldr/tools/java/org/unicode/cldr/icu/ |
D | LDMLComparator.java | 897 private final void addElement(String childNode, String parentNode, String id, String index, in addElement() argument 899 addElement(childNode, parentNode, id, index, platformValue, platformName, null); in addElement() 902 private void addElement(String childNode, String parentNode, String id, String index, in addElement() argument 912 element.node = childNode; in addElement() 925 (!element.node.equals(childNode)) || in addElement()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_expected_output/ |
D | com_github_javaparser_ast_Node.txt | 34 …Line 316) childNode.setParentNode(this) ==> com.github.javaparser.ast.Node.setParentNode(com.githu…
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ParseHelper.h | 307 …mTyped* handleUnaryMath(const TSourceLoc&, const char* str, TOperator op, TIntermTyped* childNode);
|