/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/ |
D | DistanceTable.java | 64 private final Node rootNode = new Node(-1); field in DistanceTable.Builder 89 rootNode.addExplicitMapping(key); in addMapping() 91 rootNode.addWildcardMappings(key); in addMapping() 97 Node defLangNode = rootNode.getAnyNode(); in build() 98 checkState(defLangNode != null, "missing default language mapping: %s", rootNode); in build() 100 checkState(defScriptNode != null, "missing default script mapping: %s", rootNode); in build() 102 checkState(defRegionNode != null, "missing default region mapping: %s", rootNode); in build() 116 return new DistanceTable(rootNode, distances); in build() 121 return String.format("minimum region distance: %d\n%s\n", minRegionDistance, rootNode); in toString() 126 rootNode.subtables.values().forEach(langNode -> { in pruneDefaultDistances() [all …]
|
/third_party/parse5/test/utils/ |
D | serialize-to-dat-file-format.js | 80 module.exports = function serializeToDatFileFormat(rootNode, treeAdapter) { argument 81 return serializeNodeList(treeAdapter.getChildNodes(rootNode), 0, treeAdapter);
|
/third_party/flutter/skia/samplecode/ |
D | SampleImageFilterDAG.cpp | 256 FilterNode rootNode = build_dag(ctm, SkMatrix::I(), rect, rootFilter, 0); in build_dag() local 258 rootNode.fInputNodes.push_back() = in build_dag() 261 rootNode.fInputNodes[0].computeBounds(); in build_dag() 262 return rootNode; in build_dag()
|
/third_party/flutter/skia/third_party/externals/wuffs/lib/rac/ |
D | writer.go | 424 rootNode := gather(w.leafNodes) 425 indexSize := rootNode.calcEncodedSize(0) 454 if err := nw.writeIndex(&rootNode); err != nil { 463 if err := nw.writeIndex(&rootNode); err != nil {
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuTestHierarchyIterator.cpp | 91 TestHierarchyIterator::TestHierarchyIterator (TestPackageRoot& rootNode, in TestHierarchyIterator() argument 99 NodeIter iter(&rootNode); in TestHierarchyIterator()
|
D | tcuTestHierarchyIterator.hpp | 110 …TestHierarchyIterator (TestPackageRoot& rootNode, TestHierarchyInflater& inflater, const CaseListF…
|
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
D | semantics_debugger.dart | 211 final SemanticsNode rootNode = _rootSemanticsNode; 214 if (rootNode != null) 215 _paint(canvas, rootNode, _findDepth(rootNode));
|
/third_party/mindspore/tests/ut/cpp/dataset/ |
D | zip_op_test.cc | 97 std::shared_ptr<DatasetOp> rootNode = my_tree->root(); in TEST_F() local 192 std::shared_ptr<DatasetOp> rootNode = my_tree->root(); in TEST_F() local
|
D | concat_op_test.cc | 105 std::shared_ptr<DatasetOp> rootNode = my_tree->root(); in TEST_F() local
|
/third_party/node/deps/icu-small/source/common/ |
D | rbbitblb.h | 45 RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode, UErrorCode &status);
|
D | rbbitblb.cpp | 33 RBBITableBuilder::RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode, UErrorCode &status) : in RBBITableBuilder() argument 35 fTree(*rootNode), in RBBITableBuilder()
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | rbbitblb.h | 44 RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode, UErrorCode &status);
|
D | rbbitblb.cpp | 30 RBBITableBuilder::RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode, UErrorCode &status) : in RBBITableBuilder() argument 32 fTree(*rootNode), in RBBITableBuilder()
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | rbbitblb.h | 45 RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode, UErrorCode &status);
|
D | rbbitblb.cpp | 33 RBBITableBuilder::RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode, UErrorCode &status) : in RBBITableBuilder() argument 35 fTree(*rootNode), in RBBITableBuilder()
|
/third_party/icu/icu4c/source/common/ |
D | rbbitblb.h | 45 RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode, UErrorCode &status);
|
D | rbbitblb.cpp | 33 RBBITableBuilder::RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode, UErrorCode &status) : in RBBITableBuilder() argument 35 fTree(*rootNode), in RBBITableBuilder()
|
/third_party/gstreamer/gstplugins_good/gst/goom/ |
D | goomsl_yacc.y | 1012 static NodeType *rootNode = 0; /* TODO: reinitialiser a chaque compilation. */ variable 1020 if (rootNode == 0) in gsl_append() 1021 rootNode = curNode; in gsl_append() 1078 commit_node(rootNode,0); in gsl_commit_compilation() 1079 rootNode = 0; in gsl_commit_compilation()
|
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/ |
D | binding.dart | 162 RenderView get renderView => _pipelineOwner.rootNode; 167 _pipelineOwner.rootNode = value;
|
D | object.dart | 802 AbstractNode get rootNode => _rootNode; 804 set rootNode(AbstractNode value) { 2252 /// [PipelineOwner.rootNode]. For the render tree owner by the 2261 final AbstractNode rootNode = owner.rootNode; 2262 if (rootNode is RenderObject) 2263 ancestor = rootNode;
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | focus_scope_test.dart | 1001 final FocusScopeNode rootNode = FocusScope.of(firstElement); 1002 rootNode.requestFocus(); 1006 expect(rootNode.hasFocus, isTrue); 1007 expect(rootNode, equals(firstElement.owner.focusManager.rootScope));
|
/third_party/python/Lib/xml/dom/ |
D | minidom.py | 1979 toktype, rootNode = events.getEvent() 1980 events.expandNode(rootNode) 1982 return rootNode
|
/third_party/typescript/src/compiler/ |
D | utilities.ts | 7336 export function setParentRecursive<T extends Node>(rootNode: T, incremental: boolean): T; 7338 …export function setParentRecursive<T extends Node>(rootNode: T | undefined, incremental: boolean):… 7339 …export function setParentRecursive<T extends Node>(rootNode: T | undefined, incremental: boolean):… 7340 if (!rootNode) return rootNode; 7341 …forEachChildRecursively(rootNode, isJSDocNode(rootNode) ? bindParentToChildIgnoringJSDoc : bindPar… 7342 return rootNode;
|
D | parser.ts | 565 …export function forEachChildRecursively<T>(rootNode: Node, cbNode: (node: Node, parent: Node) => T… 566 const queue: (Node | NodeArray<Node>)[] = gatherPossibleChildren(rootNode); 569 parents.push(rootNode); 1187 export function fixupParentReferences(rootNode: Node) { 1192 setParentRecursive(rootNode, /*incremental*/ true); 5446 const rootNode = getRootEtsComponent(expression); 5447 if (rootNode) { 5448 … const rootNodeName = (<Identifier>(rootNode.expression)).escapedText.toString();
|
/third_party/skia/third_party/vulkanmemoryallocator/include/ |
D | vk_mem_alloc.h | 11576 Node* rootNode = vma_new(GetAllocationCallbacks(), Node)(); in Init() local 11577 rootNode->offset = 0; in Init() 11578 rootNode->type = Node::TYPE_FREE; in Init() 11579 rootNode->parent = VMA_NULL; in Init() 11580 rootNode->buddy = VMA_NULL; in Init() 11582 m_Root = rootNode; in Init() 11583 AddToFreeListFront(0, rootNode); in Init()
|