Searched refs:obj (Results 251 - 275 of 1610) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DLinuxThread.java48 public boolean equals(Object obj) { argument
49 if ((obj == null) || !(obj instanceof LinuxThread)) {
53 return (((LinuxThread) obj).lwp_id == lwp_id);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicCIntegerType.java43 public boolean equals(Object obj) { argument
44 if (!super.equals(obj)) {
48 if (!(obj instanceof BasicCIntegerType)) {
52 BasicCIntegerType arg = (BasicCIntegerType) obj;
/openjdk7/jdk/src/share/classes/javax/naming/spi/
H A DObjectFactory.java98 * <li>If <code>obj</code> is null, create a context for resolving URLs of the
102 * <code>obj</code> set to null on an LDAP URL context factory would return a
107 * If <code>obj</code> is a URL string, create an object (typically a context)
109 * factory. If <code>obj</code> is "ldap://ldap.wiz.com/o=wiz,c=us",
115 * If <code>obj</code> is an array of URL strings, the assumption is that the
123 * If <code>obj</code> is of any other type, the behavior of
154 * @param obj The possibly null object containing location or reference
171 public Object getObjectInstance(Object obj, Name name, Context nameCtx, argument
H A DObjectFactoryBuilder.java65 * @param obj The possibly null object for which to create a factory.
72 public ObjectFactory createObjectFactory(Object obj, argument
H A DStateFactory.java118 * @param obj A non-null object whose state is to be retrieved.
135 public Object getStateToBind(Object obj, Name name, Context nameCtx, argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DMutableComboBoxModel.java51 * @param obj the <code>Object</code> to be removed
53 public void removeElement( Object obj );
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivatable.java321 * @param obj the object being exported
339 public static ActivationID exportObject(Remote obj, argument
346 return exportObject(obj, location, data, restart, port, null, null);
392 * @param obj the object being exported
412 public static ActivationID exportObject(Remote obj, argument
421 ActivationDesc desc = new ActivationDesc(obj.getClass().getName(),
433 exportObject(obj, id, port, csf, ssf);
454 ActivationGroup.currentGroup().activeObject(id, obj);
471 * @param obj the remote object implementation
478 public static Remote exportObject(Remote obj, argument
508 exportObject(Remote obj, ActivationID id, int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf) argument
536 unexportObject(Remote obj, boolean force) argument
545 exportObject(Remote obj, ActivatableServerRef sref) argument
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DServerRef.java46 * @param obj the remote object implementation
53 RemoteStub exportObject(Remote obj, Object data) argument
H A DSkeleton.java50 * @param obj remote implementation to dispatch call to
59 void dispatch(Remote obj, RemoteCall theCall, int opnum, long hash) argument
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanConstructorInfo.java91 * Compares the specified <var>obj</var> parameter with this <code>OpenMBeanConstructorInfo</code> instance for equality.
95 * <li><var>obj</var> is non null,</li>
96 * <li><var>obj</var> also implements the <code>OpenMBeanConstructorInfo</code> interface,</li>
100 * This ensures that this <tt>equals</tt> method works properly for <var>obj</var> parameters which are
103 * @param obj the object to be compared for equality with this <code>OpenMBeanConstructorInfo</code> instance;
107 public boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/javax/naming/
H A DRefAddr.java91 * Determines whether obj is equal to this RefAddr.
93 * obj is equal to this RefAddr all of these conditions are true
96 *<li> obj has the same address type as this RefAddr (using String.compareTo())
97 *<li> both obj and this RefAddr's contents are null or they are equal
100 * @param obj possibly null obj to check.
101 * @return true if obj is equal to this refaddr; false otherwise.
105 public boolean equals(Object obj) { argument
106 if ((obj != null) && (obj instanceo
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DField.java127 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DReferenceTypeSpec.java49 boolean equals(Object obj); argument
/openjdk7/hotspot/src/share/vm/runtime/
H A DbasicLock.hpp43 void move_to(oop obj, BasicLock* dest);
65 oop obj() const { return _obj; } function in class:VALUE_OBJ_CLASS_SPEC
66 void set_obj(oop obj) { _obj = obj; } argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/nc/
H A DAnyNameExceptNameClass.java66 public boolean equals(Object obj) { argument
67 if (obj == null || !(obj instanceof AnyNameExceptNameClass))
69 return nameClass.equals(((AnyNameExceptNameClass) obj).nameClass);
H A DNsNameClass.java72 public boolean equals(Object obj) { argument
73 if (obj == null || !(obj instanceof NsNameClass))
75 return namespaceUri.equals(((NsNameClass)obj).namespaceUri);
H A DNsNameExceptNameClass.java70 public boolean equals(Object obj) { argument
71 if (obj == null || !(obj instanceof NsNameExceptNameClass))
73 NsNameExceptNameClass other = (NsNameExceptNameClass)obj;
H A DSimpleNameClass.java76 public boolean equals(Object obj) { argument
77 if (obj == null || !(obj instanceof SimpleNameClass))
79 SimpleNameClass other = (SimpleNameClass) obj;
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DFileKey.java58 public boolean equals(Object obj) { argument
59 if (obj == this)
61 if (!(obj instanceof FileKey))
63 FileKey other = (FileKey)obj;
/openjdk7/jdk/test/java/io/Serializable/badSubstByReplace/
H A DBadSubstByReplace.java47 protected Object replaceObject(Object obj) throws IOException { argument
48 if(obj instanceof A) {
49 System.err.println("replaceObject(" + obj.toString() + ") with " +
52 } else return obj;
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DSerialFieldTag.java79 * @param obj the <code>Object</code> to be compared.
86 public int compareTo(Object obj); argument
/openjdk7/langtools/test/com/sun/javadoc/MetaTag/p1/
H A DC1.java31 public C1(Object obj) { argument
/openjdk7/langtools/test/tools/javac/BadOptimization/
H A DDeadCode1.java41 Object obj = arrayref[0];
/openjdk7/jdk/src/share/native/sun/java2d/
H A DDisposer.h46 Disposer_AddRecord(JNIEnv *env, jobject obj,
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DStringExpression.java80 public boolean equals(Object obj) { argument
81 if ((obj != null) && (obj instanceof StringExpression)) {
82 return value.equals(((StringExpression)obj).value);

Completed in 84 milliseconds

<<11121314151617181920>>