Searched defs:id (Results 101 - 125 of 770) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DByteField.java31 public ByteField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
H A DCharField.java31 public CharField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
H A DDoubleField.java31 public DoubleField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
H A DFloatField.java31 public FloatField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
H A DIntField.java31 public IntField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
H A DLongField.java31 public LongField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
H A DNarrowOopField.java31 public NarrowOopField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
H A DOopField.java31 public OopField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
H A DShortField.java31 public ShortField(FieldIdentifier id, long offset, boolean isVMField) { argument
32 super(id, offset, isVMField);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DvmSymbols.java57 public static Symbol symbolAt(int id) { argument
58 if (id < FIRST_SID || id >= SID_LIMIT) throw new IndexOutOfBoundsException("bad SID " + id);
59 return Symbol.create(symbolsAddress.getAddressAt(id * VM.getVM().getAddressSize()));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DBadOopTreeNodeAdapter.java36 public BadOopTreeNodeAdapter(OopHandle oop, FieldIdentifier id) { argument
37 this(oop, id, false);
42 public BadOopTreeNodeAdapter(OopHandle oop, FieldIdentifier id, boolean treeTableMode) { argument
43 super(id, treeTableMode);
H A DBooleanTreeNodeAdapter.java34 public BooleanTreeNodeAdapter(boolean val, FieldIdentifier id) { argument
35 this(val, id, false);
38 public BooleanTreeNodeAdapter(boolean val, FieldIdentifier id, boolean treeTableMode) { argument
39 super(id, treeTableMode);
H A DCStringTreeNodeAdapter.java34 public CStringTreeNodeAdapter(String val, FieldIdentifier id) { argument
35 this(val, id, false);
38 public CStringTreeNodeAdapter(String val, FieldIdentifier id, boolean treeTableMode) { argument
39 super(id, treeTableMode);
H A DCharTreeNodeAdapter.java34 public CharTreeNodeAdapter(char val, FieldIdentifier id) { argument
35 this(val, id, false);
38 public CharTreeNodeAdapter(char val, FieldIdentifier id, boolean treeTableMode) { argument
39 super(id, treeTableMode);
H A DDoubleTreeNodeAdapter.java34 public DoubleTreeNodeAdapter(double val, FieldIdentifier id) { argument
35 this(val, id, false);
38 public DoubleTreeNodeAdapter(double val, FieldIdentifier id, boolean treeTableMode) { argument
39 super(id, treeTableMode);
H A DFieldTreeNodeAdapter.java32 private FieldIdentifier id; field in class:FieldTreeNodeAdapter
36 public FieldTreeNodeAdapter(FieldIdentifier id, boolean treeTableMode) { argument
37 this.id = id;
42 return id;
H A DFloatTreeNodeAdapter.java34 public FloatTreeNodeAdapter(float val, FieldIdentifier id) { argument
35 this(val, id, false);
38 public FloatTreeNodeAdapter(float val, FieldIdentifier id, boolean treeTableMode) { argument
39 super(id, treeTableMode);
H A DRootTreeNodeAdapter.java34 public RootTreeNodeAdapter(String val, FieldIdentifier id) { argument
35 this(val, id, false);
39 public RootTreeNodeAdapter(String val, FieldIdentifier id, boolean treeTableMode) { argument
40 super(id, treeTableMode);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessPathElement.java36 LivenessPathElement(Oop obj, FieldIdentifier id) { argument
38 this.id = id;
46 return (id == null);
54 return id;
61 private FieldIdentifier id; field in class:LivenessPathElement
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DAncestorEvent.java69 * @param id an int specifying {@link #ANCESTOR_ADDED},
75 public AncestorEvent(JComponent source, int id, Container ancestor, Container ancestorParent) { argument
76 super(source, id);
H A DMenuKeyEvent.java59 * @param id an int specifying the type of event, as defined
71 public MenuKeyEvent(Component source, int id, long when, int modifiers, argument
74 super(source, id, when, modifiers, keyCode, keyChar);
/openjdk7/jdk/src/share/classes/sun/awt/dnd/
H A DSunDropTargetEvent.java38 public SunDropTargetEvent(Component source, int id, int x, int y, argument
40 super(source, id, System.currentTimeMillis(), 0, x, y, 0, 0, 0,
69 switch (id) {
/openjdk7/jdk/src/share/classes/java/rmi/dgc/
H A DLease.java51 * @param id VMID associated with this lease
54 public Lease(VMID id, long duration) argument
56 vmid = id;
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DTargetedNotification.java58 // this.id = listenerID;
83 this.id = listenerID;
102 return id;
111 return "{" + notif + ", " + id + "}";
124 private final Integer id; field in class:TargetedNotification
125 //private final int id;
128 // private static int intValue(Integer id) {
129 // if (id == null) throw new
131 // return id.intValue();
/openjdk7/jdk/src/share/classes/javax/management/timer/
H A DTimerNotification.java70 * @param id The notification identifier.
73 public TimerNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, Integer id) { argument
76 this.notificationID = id;

Completed in 87 milliseconds

1234567891011>>