Home
last modified time | relevance | path

Searched refs:nodeMap (Results 1 – 9 of 9) sorted by relevance

/third_party/node/deps/v8/tools/turbolizer/src/
Dgraph.ts5 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) {
Dgraph-view.ts338 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/
DRangeTreeConverter.java65 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/
DDocumentElement.ts36 delete doc.nodeMap[this.nodeId];
78 delete this.ownerDocument.nodeMap[element.nodeId];
85 this.ownerDocument.nodeMap[node.ref] = node;
DDocument.ts92 public get nodeMap() { method in Document
DElement.ts347 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/
DOperation.java390 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/
DSkPDFTag.cpp161 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()
DSkPDFTag.h48 SkTHashMap<int, SkPDFTagNode*>* nodeMap);