Searched defs:id (Results 1 - 25 of 770) sorted by relevance

1234567891011>>

/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/test/java/rmi/activation/ActivationGroup/downloadActivationGroup/
H A DMyActivationGroupImpl.java31 public MyActivationGroupImpl(ActivationGroupID id, MarshalledObject mobj) argument
34 super(id, mobj);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Event.h38 jfieldID id; member in struct:EventIDs
/openjdk7/jdk/test/java/lang/instrument/bootreporter/
H A DStringIdCallback.java28 public void tracker(String name, int id); argument
/openjdk7/jdk/test/java/rmi/activation/Activatable/checkImplClassLoader/
H A DActivatableImpl.java38 public ActivatableImpl(ActivationID id, MarshalledObject mobj) argument
41 super(id, 0);
/openjdk7/jdk/test/java/rmi/activation/Activatable/downloadParameterClass/
H A DFooReceiverImpl.java29 private ActivationID id; field in class:FooReceiverImpl
31 public FooReceiverImpl(ActivationID id, MarshalledObject mobj) argument
34 this.id = id;
35 Activatable.exportObject(this, id, 0);
/openjdk7/jdk/src/share/classes/sun/awt/event/
H A DIgnorePaintEvent.java39 public IgnorePaintEvent(Component source, int id, Rectangle updateRect) { argument
40 super(source, id, updateRect);
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivationInstantiator.java47 * activation identifier, <code>id</code>, and descriptor,
65 * @param id the object's activation identifier
73 public MarshalledObject<? extends Remote> newInstance(ActivationID id, argument
H A DActivator.java39 * identifier, <code>id</code>, determines the group in which the
67 * <code>id</code>. If the activator knows the object to be active
77 * it the object's id and descriptor. <p>
100 * @param id the activation identifier for the object being activated
110 public MarshalledObject<? extends Remote> activate(ActivationID id, argument
/openjdk7/hotspot/src/share/vm/ci/
H A DciObject.cpp130 void ciObject::set_ident(uint id) { argument
132 assert( id < ((uint)1 << (BitsPerInt-FLAG_BITS)), "id too big");
133 _ident = _ident + (id << FLAG_BITS);
141 uint id = _ident >> FLAG_BITS;
142 assert(id != 0, "must be initialized");
143 return id;
/openjdk7/jdk/test/java/rmi/activation/ActivateFailedException/activateFails/
H A DActivateFails.java50 public ActivateFails(ActivationID id, MarshalledObject obj) argument
53 super(id, 0);
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/activeGroup/
H A DIdempotentActiveGroup.java121 public MarshalledObject newInstance(ActivationID id, argument
/openjdk7/langtools/test/tools/javac/generics/
H A DT4757416.java34 static class C<A> { A id ( A x) { return x; } } method in class:T4756416.C
35 interface I<A> { A id(A x); } method in interface:T4756416.I
37 public String id(String x) { return x; } method in class:T4756416.D
38 public Integer id(Integer x) { return x; } method in class:T4756416.D
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DWebServiceFeatureAnnotation.java79 String id(); method in interface:WebServiceFeatureAnnotation
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DIdPattern.java33 public IdPattern(String id) { argument
34 super("##id",id);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DGenericTaggedComponent.java43 public GenericTaggedComponent( int id, InputStream is ) argument
45 super( id, is ) ;
48 public GenericTaggedComponent( int id, byte[] data ) argument
50 super( id, data ) ;
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/corba/se/org/omg/CORBA/
H A DORB.java39 * If this operation is called with an id, <code>"Y"</code>, and an
44 * @param id The ID by which the initial reference will be known.
46 * @throws InvalidName if this operation is called with an empty string id
47 * or this operation is called with an id that is already registered,
51 public void register_initial_reference( String id, argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/ior/
H A DIdentifiableContainerBase.java54 * with type given by id.
56 public Iterator iteratorById( final int id) argument
66 if (ide.getId() == id)
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/protocol/
H A DLocalClientRequestDispatcherFactory.java31 public LocalClientRequestDispatcher create( int id, IOR ior ) ; argument
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DNameValuePair.java39 public String id; field in class:NameValuePair
60 id = __id;
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DApplicationException.java36 * @param id the repository id of the user exception
39 public ApplicationException(String id, argument
41 this.id = id;
51 return id;
62 private String id; field in class:ApplicationException
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DThreadAccess.java66 id or handle that is platform dependent */
67 public ThreadProxy getThreadForThreadId(long id); argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcThreadFactory.java34 public ThreadProxy createThreadWrapper(long id); argument

Completed in 214 milliseconds

1234567891011>>