Home
last modified time | relevance | path

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

12

/external/armnn/src/armnnUtils/
DGraphTopologicalSort.hpp33 for (TNodeId childNode : getIncomingEdges(node)) in GetNextChild() local
35 if (nodeStates.find(childNode) == nodeStates.end()) in GetNextChild()
37 return childNode; in GetNextChild()
41 if (nodeStates.find(childNode)->second == NodeState::Visiting) in GetNextChild()
43 return childNode; in GetNextChild()
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/runtime/directive/
DEvaluate.java114 Node childNode = node.jjtGetChild(0); in init() local
115 if ( childNode.getType() != ParserTreeConstants.JJTSTRINGLITERAL && in init()
116 childNode.getType() != ParserTreeConstants.JJTREFERENCE ) in init()
123 childNode.getColumn(), in init()
124 childNode.getLine()); in init()
/external/protobuf/csharp/src/Google.Protobuf/
DFieldMaskTree.cs123 Node childNode; in AddFieldPath()
124 if (!node.Children.TryGetValue(part, out childNode)) in AddFieldPath()
127 childNode = new Node(); in AddFieldPath()
128 node.Children.Add(part, childNode); in AddFieldPath()
130 node = childNode; in AddFieldPath()
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/
DFieldMaskTree.cs123 Node childNode; in AddFieldPath()
124 if (!node.Children.TryGetValue(part, out childNode)) in AddFieldPath()
127 childNode = new Node(); in AddFieldPath()
128 node.Children.Add(part, childNode); in AddFieldPath()
130 node = childNode; in AddFieldPath()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlRenderUtil.java261 TtmlNode childNode = childNodesStack.pop(); in findRubyTextNode() local
263 TtmlStyle style = resolveStyle(childNode.style, childNode.getStyleIds(), globalStyles); in findRubyTextNode()
265 return childNode; in findRubyTextNode()
267 for (int i = childNode.getChildCount() - 1; i >= 0; i--) { in findRubyTextNode()
268 childNodesStack.push(childNode.getChild(i)); in findRubyTextNode()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlRenderUtil.java261 TtmlNode childNode = childNodesStack.pop(); in findRubyTextNode() local
263 TtmlStyle style = resolveStyle(childNode.style, childNode.getStyleIds(), globalStyles); in findRubyTextNode()
265 return childNode; in findRubyTextNode()
267 for (int i = childNode.getChildCount() - 1; i >= 0; i--) { in findRubyTextNode()
268 childNodesStack.push(childNode.getChild(i)); in findRubyTextNode()
/external/deqp/framework/common/
DtcuTestHierarchyIterator.cpp222 TestNode* childNode = iter.children[iter.curChildNdx]; in next() local
226 if ( isTestNodeTypeExecutable(childNode->getNodeType()) ) in next()
228 const std::string testName = m_nodePath + "." + childNode->getName(); in next()
232 m_sessionStack.push_back(NodeIter(childNode)); in next()
/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/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/
DNode.java341 protected void setAsParentNodeOf(Node childNode) { in setAsParentNodeOf() argument
342 if (childNode != null) { in setAsParentNodeOf()
343 childNode.setParentNode(this); in setAsParentNodeOf()
/external/perfetto/ui/src/test/diff_viewer/
Dscript.js31 const childNode = document.createTextNode(child);
32 result.appendChild(childNode);
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/
DNode.java314 protected void setAsParentNodeOf(Node childNode) { in setAsParentNodeOf() argument
315 if (childNode != null) { in setAsParentNodeOf()
316 childNode.setParentNode(this); in setAsParentNodeOf()
/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/skia/modules/skottie/src/
DLayer.cpp136 sk_sp<sksg::RenderNode> childNode) { in AttachMask() argument
137 if (!jmask) return childNode; in AttachMask()
203 return childNode; in AttachMask()
223 return sksg::ClipEffect::Make(std::move(childNode), std::move(clip_node), true); in AttachMask()
242 return sksg::MaskEffect::Make(std::move(childNode), std::move(maskNode)); in AttachMask()
/external/catch2/include/reporters/
Dcatch_reporter_junit.cpp204 for( auto const& childNode : sectionNode.childSections ) in writeSection() local
206 writeSection( name, "", *childNode ); in writeSection()
208 writeSection( className, name, *childNode ); in writeSection()
Dcatch_reporter_sonarqube.hpp96 for(auto const& childNode : sectionNode.childSections) in writeSection() local
97 writeSection(name, *childNode, okToFail); in writeSection()
/external/catch2/single_include/catch2/
Dcatch_reporter_sonarqube.hpp96 for(auto const& childNode : sectionNode.childSections) in writeSection() local
97 writeSection(name, *childNode, okToFail); in writeSection()
/external/icu/icu4c/source/i18n/
Dplurrule.cpp980 if ( other.childNode != nullptr ) { in OrConstraint()
981 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint()
982 if (this->childNode == nullptr) { in OrConstraint()
1000 delete childNode; in ~OrConstraint()
1001 childNode = nullptr; in ~OrConstraint()
1017 U_ASSERT(curOrConstraint->childNode == nullptr); in add()
1018 curOrConstraint->childNode = new AndConstraint(); in add()
1019 if (curOrConstraint->childNode == nullptr) { in add()
1023 return curOrConstraint->childNode; in add()
1033 AndConstraint* andRule = orRule->childNode; in isFulfilled()
[all …]
/external/cronet/third_party/icu/source/i18n/
Dplurrule.cpp980 if ( other.childNode != nullptr ) { in OrConstraint()
981 this->childNode = new AndConstraint(*(other.childNode)); in OrConstraint()
982 if (this->childNode == nullptr) { in OrConstraint()
1000 delete childNode; in ~OrConstraint()
1001 childNode = nullptr; in ~OrConstraint()
1017 U_ASSERT(curOrConstraint->childNode == nullptr); in add()
1018 curOrConstraint->childNode = new AndConstraint(); in add()
1019 if (curOrConstraint->childNode == nullptr) { in add()
1023 return curOrConstraint->childNode; in add()
1033 AndConstraint* andRule = orRule->childNode; in isFulfilled()
[all …]
/external/angle/src/compiler/translator/msl/
DAstHelpers.cpp21 TIntermNode *childNode = declNode.getChildNode(0); in ViewDeclaration() local
22 ASSERT(childNode); in ViewDeclaration()
24 if ((symbolNode = childNode->getAsSymbolNode())) in ViewDeclaration()
30 TIntermBinary *initNode = childNode->getAsBinaryNode(); in ViewDeclaration()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DNodeList.java535 private void setAsParentNodeOf(Node childNode) { in setAsParentNodeOf() argument
536 if (childNode != null) { in setAsParentNodeOf()
537 childNode.setParentNode(getParentNodeForChildren()); in setAsParentNodeOf()
/external/skia/modules/svg/src/
DSkSVGDOM.cpp377 sk_sp<SkSVGNode> childNode = construct_svg_node(dom, localCtx, child); in construct_svg_node() local
378 if (childNode) { in construct_svg_node()
379 node->appendChild(std::move(childNode)); in construct_svg_node()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/expected_output/
Dcom_github_javaparser_ast_Node.txt77 Line 342) childNode != null ==> boolean
78 Line 343) childNode.setParentNode(this) ==> void

12