Searched refs:id (Results 226 - 250 of 1217) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKPainter.java110 Region id = context.getRegion();
112 int gtkState = GTKLookAndFeel.synthStateToGTKState(id, state);
115 if (! ENGINE.paintCachedImage(g, x, y, w, h, id,
118 ENGINE.startPainting(g, x, y, w, h, id, state, orientation);
119 ENGINE.paintBox(g, context, id, gtkState, ShadowType.OUT,
129 Region id = context.getRegion();
132 if (! ENGINE.paintCachedImage(g, x, y, w, h, id, orientation)) {
133 ENGINE.startPainting(g, x, y, w, h, id, orientation);
134 ENGINE.paintBox(g, context, id, SynthConstants.ENABLED,
169 Region id
285 paintButtonBackgroundImpl(SynthContext context, Graphics g, Region id, String detail, int x, int y, int w, int h, boolean paintBackground, boolean paintFocus, boolean defaultCapable, boolean toolButton) argument
1216 paintFocus(SynthContext context, Graphics g, Region id, int state, String detail, int x, int y, int w, int h) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/tree/
H A DObjectTreeNodeAdapter.java42 public ObjectTreeNodeAdapter(Address addr, FieldIdentifier id) { argument
43 this(addr, id, false);
48 public ObjectTreeNodeAdapter(Address addr, FieldIdentifier id, boolean treeTableMode) { argument
49 super(id, treeTableMode);
78 FieldIdentifier id = ((FieldTreeNodeAdapter) child).getID();
79 Finder f = new Finder(id);
191 private FieldIdentifier id; field in class:ObjectTreeNodeAdapter.Finder
195 public Finder(FieldIdentifier id) { argument
196 this.id = id;
[all...]
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileLog.cpp104 int id = obj->ident(); local
105 if (id < 0) return id;
106 // If it has already been identified, just return the id.
107 if (id < _identities_limit && _identities[id] != 0) return id;
109 if (id >= _identities_capacity) {
111 if (new_cap <= id) new_cap = id
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA_2_3/
H A DORB.java43 public org.omg.CORBA.portable.ValueFactory register_value_factory(String id, argument
53 public void unregister_value_factory(String id) argument
62 public org.omg.CORBA.portable.ValueFactory lookup_value_factory(String id) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/amd64/
H A DRemoteAMD64Thread.java37 public RemoteAMD64Thread(RemoteDebuggerClient debugger, long id) { argument
38 super(debugger, id);
44 debugger.getThreadIntegerRegisterSet(id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/sparc/
H A DRemoteSPARCThread.java37 public RemoteSPARCThread(RemoteDebuggerClient debugger, long id) { argument
38 super(debugger, id);
44 debugger.getThreadIntegerRegisterSet(id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/x86/
H A DRemoteX86Thread.java37 public RemoteX86Thread(RemoteDebuggerClient debugger, long id) { argument
38 super(debugger, id);
44 debugger.getThreadIntegerRegisterSet(id);
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DInternalFrameEvent.java137 * @param id an integer indicating the type of event
139 public InternalFrameEvent(JInternalFrame source, int id) { argument
140 super(source, id);
151 switch(id) {
/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/com/sun/tools/hat/internal/model/
H A DJavaStatic.java55 long id = -1;
57 id = ((JavaObjectRef)value).getId();
67 snapshot.addRoot(new Root(id, clazz.getId(),
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DComponentEvent.java56 * An unspecified behavior will be caused if the {@code id} parameter
111 * @param id An integer indicating the type of event.
118 public ComponentEvent(Component source, int id) { argument
119 super(source, id);
145 switch(id) {
H A DItemEvent.java45 * An unspecified behavior will be caused if the {@code id} parameter
78 * This event id indicates that an item's state changed.
122 * @param id The integer that identifies the event type.
135 public ItemEvent(ItemSelectable source, int id, Object item, int stateChange) { argument
136 super(source, id);
180 switch(id) {
H A DMouseWheelEvent.java166 * <p>Note that passing in an invalid <code>id</code> results in
173 * @param id the integer that identifies the event
195 public MouseWheelEvent (Component source, int id, long when, int modifiers, argument
199 this(source, id, when, modifiers, x, y, 0, 0, clickCount,
207 * <p>Note that passing in an invalid <code>id</code> results in
217 * @param id the integer that identifies the event
242 public MouseWheelEvent (Component source, int id, long when, int modifiers, argument
246 this(source, id, when, modifiers, x, y, xAbs, yAbs, clickCount, popupTrigger,
256 * <p>Note that passing in an invalid <code>id</code> parameter results
265 * @param id th
296 MouseWheelEvent(Component source, int id, long when, int modifiers, int x, int y, int xAbs, int yAbs, int clickCount, boolean popupTrigger, int scrollType, int scrollAmount, int wheelRotation, double preciseWheelRotation) argument
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/actions/
H A DMouseOverAction.java46 long id = event.getEventID();
47 if (id != eventID) {
48 eventID = id;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTView.h54 id cglLayer; // is a sublayer of view.layer
59 @property (nonatomic, retain) id cglLayer;
62 - (id) initWithRect:(NSRect) rect platformView:(jobject)cPlatformView windowLayer:(CALayer*)windowLayer;
/openjdk7/jdk/src/share/back/
H A DeventHelper.h36 void eventHelper_recordEvent(EventInfo *evinfo, jint id,
38 void eventHelper_recordClassUnload(jint id, char *signature, struct bag *eventBag);
39 void eventHelper_recordFrameEvent(jint id, jbyte suspendPolicy, EventIndex ei,
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DCatchStatement.java44 Identifier id; field in class:CatchStatement
51 public CatchStatement(long where, Expression texpr, IdentifierToken id, Statement body) { argument
53 this.mod = id.getModifiers();
55 this.id = id.getName();
60 public CatchStatement(long where, Expression texpr, Identifier id, Statement body) { argument
63 this.id = id;
76 if (ctx.getLocalField(id) != null) {
77 env.error(where, "local.redefined", id);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpStandardObjectServer.java94 * final long id = var.oid.getOidArc(depth);
95 * var.value = meta.get(id, data);
127 final long id = var.oid.getOidArc(depth);
128 var.value = meta.get(id, data);
155 * final long id = var.oid.getOidArc(depth);
156 * var.value = meta.set(var.value, id, data);
192 final long id = var.oid.getOidArc(depth);
193 var.value = meta.set(var.value, id, data);
220 * final long id = var.oid.getOidArc(depth);
221 * meta.check(var.value, id, dat
[all...]
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DPublicMapping.java73 String id = ln.substring(i, j);
79 put(id, baseStr + where);
88 public void put(String id, String str) { argument
90 // System.err.println("ADD = '" + id + "' = " + str);
91 tab.put(id, str);
104 public String get(String id) { argument
105 // System.err.println(" id = "+id);
106 return (String) tab.get(id);
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DStarter.java29 private String id; field in class:Starter
88 private Starter(String id, DelegatingLoader dl, String startClass) { argument
89 this.id = id;
95 log("Spawned thread " + id + " running");
103 log("Thread " + id + " terminating");
/openjdk7/jdk/test/java/rmi/activation/Activatable/inactiveGroup/
H A DInactiveGroup.java47 private ActivationID id; field in class:InactiveGroup
49 public InactiveGroup(ActivationID id, MarshalledObject obj) argument
52 this.id = id;
53 Activatable.exportObject(this, id, 0);
68 return id;
/openjdk7/jdk/test/java/rmi/activation/ActivationGroup/downloadActivationGroup/
H A DDownloadActivationGroup.java53 private ActivationID id; field in class:DownloadActivationGroup
55 public DownloadActivationGroup(ActivationID id, MarshalledObject mobj) argument
58 this.id = id;
59 Activatable.exportObject(this, id, 0);
91 return id;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DTaggedProfileFactoryFinderImpl.java47 public Identifiable handleMissingFactory( int id, InputStream is) argument
49 return new GenericTaggedProfile( id, is ) ;
H A DTaggedProfileTemplateFactoryFinderImpl.java49 public Identifiable handleMissingFactory( int id, InputStream is) argument
51 throw wrapper.taggedProfileTemplateFactoryNotFound( new Integer(id) ) ;
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DExceptionDescription.java38 public String id = null; field in class:ExceptionDescription
50 id = _id;

Completed in 114 milliseconds

1234567891011>>