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

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DSlot.java37 public abstract class Slot implements Port, Source.Provider { class in inherits:Port,Source.Provider
46 protected Slot(Figure figure, int wantedIndex) { method in class:Slot
55 public static final Comparator<Slot> slotIndexComparator = new Comparator<Slot>() {
57 public int compare(Slot o1, Slot o2) {
61 public static final Comparator<Slot> slotFigureComparator = new Comparator<Slot>() {
63 public int compare(Slot o1, Slot o
[all...]
H A DOutputSlot.java32 public class OutputSlot extends Slot {
H A DInputSlot.java33 public class InputSlot extends Slot {
H A DFigure.java188 Collections.sort(inputSlots, Slot.slotIndexComparator);
192 public void removeSlot(Slot s) {
217 Collections.sort(outputSlots, Slot.slotIndexComparator);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DExchanger.java136 * Waiting: Slot zero is special in that it is the only slot that
220 * to minimize interference with heavily CAS'ed Slot locations.
299 * A Slot is an AtomicReference with heuristic padding to lessen
306 private static final class Slot extends AtomicReference<Object> { class in class:Exchanger
312 * Slot array. Elements are lazily initialized when needed.
315 private volatile Slot[] arena = new Slot[CAPACITY];
344 Slot slot = arena[index];
425 Slot newSlot = new Slot();
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DSlotWidget.java28 import com.sun.hotspot.igv.graph.Slot;
45 private Slot slot;
52 public SlotWidget(Slot slot, DiagramScene scene, Widget parent, FigureWidget fw) {
76 public Slot getSlot() {
H A DMultiConnectionWidget.java29 import com.sun.hotspot.igv.graph.Slot;
127 SortedSet<InputSlot> set = new TreeSet<InputSlot>(Slot.slotFigureComparator);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramScene.java36 import com.sun.hotspot.igv.graph.Slot;
108 private HashMap<Slot, SlotWidget> slotWidgets;
547 slotWidgets = new HashMap<Slot, SlotWidget>();

Completed in 5397 milliseconds