Searched refs:outOffsets (Results 1 - 1 of 1) sorted by relevance

/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DHierarchicalLayoutManager.java95 public HashMap<Integer, Integer> outOffsets = new HashMap<>(); field in class:HierarchicalLayoutManager.LayoutNode
293 if (curEdge.from.outOffsets.containsKey(curEdge.relativeFrom)) {
294 points.add(new Point(p.x, p.y + curEdge.from.outOffsets.get(curEdge.relativeFrom) + (curEdge.link == null ? 0 : curEdge.link.getFrom().getRelativePosition().y)));
353 if (e.from.outOffsets.containsKey(e.relativeFrom)) {
354 points.add(new Point(p.x, p.y + e.from.outOffsets.get(e.relativeFrom) + e.link.getFrom().getRelativePosition().y));
1577 node.outOffsets.put(pos - minX, curX);

Completed in 37 milliseconds