Searched refs:id (Results 176 - 200 of 1217) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCMenuComponent.h36 - (id) initWithPeer:(jobject)peer;
/openjdk7/jdk/src/share/back/
H A DSDE.h35 setGlobalStratumId(char *id);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/unmarshaller/
H A DDefaultIDResolver.java53 public void bind(String id, Object obj) { argument
55 idmap.put(id,obj);
59 public Callable resolve(final String id, Class targetType) { argument
63 return idmap.get(id);
/openjdk7/jdk/test/com/sun/jdi/
H A DUnloadEventTarg.java41 static void loadup(String id) throws ClassNotFoundException { argument
42 ClassLoaderTarg cl = new ClassLoaderTarg(id);
67 static void classLoaderFinalized(String id) { argument
68 System.err.println("finalizing ClassLoaderTarg - " + id);
/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/src/share/native/java/util/
H A DTimeZone.c85 char *id = getGMTOffsetID(); local
88 if (id != NULL) {
89 jstrID = JNU_NewStringPlatform(env, id);
90 free((void *)id);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DStyleAssociation.java77 String text, SynthStyle style, int id)
79 return new StyleAssociation(text, style, id);
83 private StyleAssociation(String text, SynthStyle style, int id) argument
87 _id = id;
76 createStyleAssociation( String text, SynthStyle style, int id) argument
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DPrimitiveType.java175 Identifier id = null;
178 case TYPE_VOID: id = idVoid; break;
179 case TYPE_BOOLEAN: id = idBoolean; break;
180 case TYPE_BYTE: id = idByte; break;
181 case TYPE_CHAR: id = idChar; break;
182 case TYPE_SHORT: id = idShort; break;
183 case TYPE_INT: id = idInt; break;
184 case TYPE_LONG: id = idLong; break;
185 case TYPE_FLOAT: id = idFloat; break;
186 case TYPE_DOUBLE: id
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSCMRepeatingLeaf.java38 int minOccurs, int maxOccurs, int id, int position) {
39 super(type, leaf, id, position);
37 XSCMRepeatingLeaf(int type, Object leaf, int minOccurs, int maxOccurs, int id, int position) argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DRepositoryID.java48 public RepositoryID (String id) argument
50 _id = id;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/amd64/
H A DProcAMD64ThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new ProcAMD64Thread(debugger, id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/sparc/
H A DProcSPARCThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new ProcSPARCThread(debugger, id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/x86/
H A DProcX86ThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new ProcX86Thread(debugger, id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/amd64/
H A DRemoteAMD64ThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new RemoteAMD64Thread(debugger, id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/sparc/
H A DRemoteSPARCThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new RemoteSPARCThread(debugger, id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/remote/x86/
H A DRemoteX86ThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new RemoteX86Thread(debugger, id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/amd64/
H A DWindbgAMD64ThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new WindbgAMD64Thread(debugger, id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/ia64/
H A DWindbgIA64ThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new WindbgIA64Thread(debugger, id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/x86/
H A DWindbgX86ThreadFactory.java41 public ThreadProxy createThreadWrapper(long id) { argument
42 return new WindbgX86Thread(debugger, id);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyMerger.java78 final StringBuilder id = new StringBuilder();
87 if (id.length() > 0) {
88 id.append('-');
90 id.append(policyId);
97 return Policy.createNullPolicy(mergedVersion, null, id.length() == 0 ? null : id.toString());
103 return Policy.createPolicy(mergedVersion, null, id.length() == 0 ? null : id.toString(), mergedSetList);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DCmdIDList.h39 AwtObject* Lookup(UINT id);
40 void Remove(UINT id);
51 AwtObject *obj; // object that is assigned this id
/openjdk7/jdk/test/java/rmi/activation/Activatable/extLoadedImpl/
H A DExtLoadedImpl.java29 public ExtLoadedImpl(ActivationID id, MarshalledObject obj) argument
32 Activatable.exportObject(this, id, 0);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DArrayType.java62 public String typeString(String id, boolean abbrev, boolean ret) { argument
63 return getElementType().typeString(id, abbrev, ret) + "[]";
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DCopierManagerImpl.java49 public void setDefaultId( int id )
51 defaultId = id ;
59 public ObjectCopierFactory getObjectCopierFactory( int id )
61 return (ObjectCopierFactory)(map.get( id )) ;
69 public void registerObjectCopierFactory( ObjectCopierFactory factory, int id )
71 map.set( id, factory ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DIdentifiableFactoryFinderBase.java58 protected IdentifiableFactory getFactory(int id) argument
60 Integer ident = new Integer( id ) ;
66 public abstract Identifiable handleMissingFactory( int id, InputStream is ) ; argument
68 public Identifiable create(int id, InputStream is) argument
70 IdentifiableFactory factory = getFactory( id ) ;
75 return handleMissingFactory( id, is ) ;

Completed in 117 milliseconds

1234567891011>>