Searched refs:nodeMap (Results 1 – 9 of 9) sorted by relevance
/third_party/node/deps/v8/tools/turbolizer/src/ |
D | graph.ts | 5 nodeMap: Array<GNode>; property in Graph 16 this.nodeMap = []; 26 this.nodeMap[jsonNode.id] = new GNode(jsonNode.nodeLabel); 30 const t = this.nodeMap[e.target]; 31 const s = this.nodeMap[e.source]; 44 for (const node of this.nodeMap) { 59 for (const node of this.nodeMap) {
|
D | graph-view.ts | 338 const edge = g.nodeMap[components[3]].inputs[components[2]]; 341 return g.nodeMap[components[1]].areAnyOutputsVisible() == 2; 348 return g.nodeMap[components[1]].areAnyOutputsVisible() == 1; 353 const edge = g.nodeMap[components[3]].inputs[components[2]]; 356 return g.nodeMap[components[1]].areAnyOutputsVisible() == 0; 362 const from = g.nodeMap[components[1]]; 685 const node = this.graph.nodeMap[origin.nodeId]; 826 const node = graph.nodeMap[components[3]];
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/ |
D | RangeTreeConverter.java | 65 private final Map<DfaNode, Node> nodeMap = new HashMap<>(); field in RangeTreeConverter.NfaVisitor 78 nodeMap.put(initial, Node.INITIAL); in NfaVisitor() 79 nodeMap.put(RangeTree.getTerminal(), Node.TERMINAL); in NfaVisitor() 86 Node source = nodeMap.get(dfaSource); in visit() 112 Node target = nodeMap.get(gnode); in getTarget() 117 nodeMap.put(gnode, lastAdded); in getTarget()
|
/third_party/jsframework/runtime/vdom/ |
D | DocumentElement.ts | 36 delete doc.nodeMap[this.nodeId]; 78 delete this.ownerDocument.nodeMap[element.nodeId]; 85 this.ownerDocument.nodeMap[node.ref] = node;
|
D | Document.ts | 92 public get nodeMap() { method in Document
|
D | Element.ts | 347 child.ownerDocument.nodeMap[child.nodeId] = child; 1172 doc.nodeMap[node.nodeId] = node;
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/ |
D | Operation.java | 390 private final ImmutableSetMultimap<DfaNode, Digit> nodeMap; 394 this.nodeMap = outMasks.entrySet().stream() 411 return nodeMap.keySet().asList(); 418 out.writeInt((getOpCode().ordinal() << 29) | asCodedMap(nodeMap)); 426 return format(nodeMap.asMap().values().stream() 453 private static int asCodedMap(ImmutableSetMultimap<DfaNode, Digit> nodeMap) { 455 List<DfaNode> outs = nodeMap.keySet().asList(); 457 for (Digit digit : nodeMap.get(outs.get(n))) {
|
/third_party/skia/src/pdf/ |
D | SkPDFTag.cpp | 161 SkTHashMap<int, SkPDFTagNode*>* nodeMap) { in Copy() argument 162 nodeMap->set(node.fNodeId, dst); in Copy() 164 SkASSERT(!nodeMap->find(nodeId)); in Copy() 165 nodeMap->set(nodeId, dst); in Copy() 177 Copy(*node.fChildVector[i], &children[i], arena, nodeMap); in Copy()
|
D | SkPDFTag.h | 48 SkTHashMap<int, SkPDFTagNode*>* nodeMap);
|