Searched defs:id (Results 26 - 50 of 770) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/
H A DRemoteThreadFactory.java34 public ThreadProxy createThreadWrapper(long id); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgThreadFactory.java34 public ThreadProxy createThreadWrapper(long id); argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthStyleFactory.java39 * public SynthStyle getStyle(JComponent c, Region id) {
40 * if (id == Region.BUTTON) {
43 * else if (id == Region.TREE) {
71 * @param id Region identifier
74 public abstract SynthStyle getStyle(JComponent c, Region id); argument
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletEvent.java40 private int id; field in class:AppletEvent
43 public AppletEvent(Object source, int id, Object argument) { argument
46 this.id = id;
50 return id;
58 String str = getClass().getName() + "[source=" + source + " + id="+ id;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DModalityEvent.java40 public ModalityEvent(Object source, ModalityListener listener, int id) { argument
41 super(source, id);
56 throw new Error("Invalid event id.");
H A DTimedWindowEvent.java39 public TimedWindowEvent(Window source, int id, Window opposite, long time) { argument
40 super(source, id, opposite);
44 public TimedWindowEvent(Window source, int id, Window opposite, argument
47 super(source, id, opposite, oldState, newState);
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationMonitor.java62 * <code>id</code>, is no longer valid. The monitor considers the
63 * reference associated with <code>id</code> as a stale reference.
68 * @param id the object's activation identifier
73 public void inactiveObject(ActivationID id) argument
82 * @param id the active object's id
88 public void activeObject(ActivationID id, argument
98 * @param id the group's id
104 public void inactiveGroup(ActivationGroupID id, argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJDMEnterprise.java34 JDMEnterprise(int id) { argument
35 super(id);
38 JDMEnterprise(Parser p, int id) { argument
39 super(p, id);
42 public static Node jjtCreate(int id) { argument
43 return new JDMEnterprise(id);
46 public static Node jjtCreate(Parser p, int id) { argument
47 return new JDMEnterprise(p, id);
H A DJDMHost.java34 JDMHost(int id) { argument
35 super(id);
38 JDMHost(Parser p, int id) { argument
39 super(p, id);
42 public static Node jjtCreate(int id) { argument
43 return new JDMHost(id);
46 public static Node jjtCreate(Parser p, int id) { argument
47 return new JDMHost(p, id);
H A DJDMHostInform.java33 JDMHostInform(int id) { argument
34 super(id);
37 JDMHostInform(Parser p, int id) { argument
38 super(p, id);
41 public static Node jjtCreate(int id) { argument
42 return new JDMHostInform(id);
45 public static Node jjtCreate(Parser p, int id) { argument
46 return new JDMHostInform(p, id);
H A DJDMHostTrap.java34 JDMHostTrap(int id) { argument
35 super(id);
38 JDMHostTrap(Parser p, int id) { argument
39 super(p, id);
42 public static Node jjtCreate(int id) { argument
43 return new JDMHostTrap(id);
46 public static Node jjtCreate(Parser p, int id) { argument
47 return new JDMHostTrap(p, id);
H A DJDMInformInterestedHost.java31 JDMInformInterestedHost(int id) { argument
32 super(id);
35 JDMInformInterestedHost(Parser p, int id) { argument
36 super(p, id);
39 public static Node jjtCreate(int id) { argument
40 return new JDMInformInterestedHost(id);
43 public static Node jjtCreate(Parser p, int id) { argument
44 return new JDMInformInterestedHost(p, id);
H A DJDMIpV6Address.java33 public JDMIpV6Address(int id) { argument
34 super(id);
37 public JDMIpV6Address(Parser p, int id) { argument
38 super(p, id);
H A DJDMManagers.java32 JDMManagers(int id) { argument
33 super(id);
36 JDMManagers(Parser p, int id) { argument
37 super(p, id);
40 public static Node jjtCreate(int id) { argument
41 return new JDMManagers(id);
44 public static Node jjtCreate(Parser p, int id) { argument
45 return new JDMManagers(p, id);
H A DJDMNetMaskV6.java35 public JDMNetMaskV6(int id) { argument
36 super(id);
39 public JDMNetMaskV6(Parser p, int id) { argument
40 super(p, id);
H A DJDMSecurityDefs.java32 JDMSecurityDefs(int id) { argument
33 super(id);
36 JDMSecurityDefs(Parser p, int id) { argument
37 super(p, id);
40 public static Node jjtCreate(int id) { argument
41 return new JDMSecurityDefs(id);
44 public static Node jjtCreate(Parser p, int id) { argument
45 return new JDMSecurityDefs(p, id);
H A DJDMTrapInterestedHost.java32 JDMTrapInterestedHost(int id) { argument
33 super(id);
36 JDMTrapInterestedHost(Parser p, int id) { argument
37 super(p, id);
40 public static Node jjtCreate(int id) { argument
41 return new JDMTrapInterestedHost(id);
44 public static Node jjtCreate(Parser p, int id) { argument
45 return new JDMTrapInterestedHost(p, id);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadAction.java40 int id; field in class:ThreadAction
42 ThreadAction(ThreadReference thread, int id) { argument
44 this.id = id;
49 int id() { method in class:ThreadAction
50 return id;
H A DVMAction.java40 int id; field in class:VMAction
43 VMAction(VirtualMachine vm, int id) { argument
44 this(vm, null, id);
47 // For id = VM_NOT_SUSPENDED, if resumingThread != null, then it is
49 VMAction(VirtualMachine vm, ThreadReference resumingThread, int id) { argument
51 this.id = id;
57 int id() { method in class:VMAction
58 return id;
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_AWTEvent.h40 jfieldID id; member in struct:AWTEventIDs
/openjdk7/jdk/test/com/sun/jdi/
H A DClassLoaderTarg.java32 String id; field in class:ClassLoaderTarg
34 public ClassLoaderTarg(String id) { argument
35 this.id = id;
81 System.err.println("ClassLoaderTarg (" + id +") loaded: " + cname);
87 UnloadEventTarg.classLoaderFinalized(id);
/openjdk7/jdk/test/java/lang/ThreadLocal/
H A DTestThreadId.java41 private static ThreadId id = new ThreadId(); field in class:TestThreadId
51 // Each child thread just publishes its id value for validation
53 value = id.get();
58 // holds true corresponding to a used id value
70 // Join with each thread and get/check its id
81 "TestThreadId: Failed with duplicated id: " +
88 "TestThreadId: Failed with unexpected id value" + e);
/openjdk7/jdk/test/java/lang/instrument/
H A DNativeMethodPrefixApp.java58 public void tracker(String name, int id) { argument
60 System.err.println("Tracked #" + id + ": MATCHED -- " + name);
61 gotIt[id] = true;
63 System.err.println("Tracked #" + id + ": " + name);
/openjdk7/jdk/test/java/lang/instrument/bootreporter/
H A DStringIdCallbackReporter.java31 public static void tracker(String name, int id) { argument
33 callback.tracker(name, id);
/openjdk7/jdk/test/java/rmi/activation/Activatable/checkActivateRef/
H A DCheckActivateRef.java57 private CheckActivateRef(ActivationID id, MarshalledObject obj) argument
60 super(id, 0);

Completed in 89 milliseconds

1234567891011>>