Searched defs:obj (Results 251 - 275 of 1229) sorted by relevance

<<11121314151617181920>>

/openjdk7/langtools/src/share/classes/javax/lang/model/type/
H A DTypeMirror.java76 * @param obj the object to be compared with this type
79 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/native/sun/java2d/
H A DDisposer.c48 Disposer_AddRecord(JNIEnv *env, jobject obj, GeneralDisposeFunc disposer, jlong pData) { argument
56 obj, ptr_to_jlong(disposer), pData);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DKeyCache.java60 final Object obj; field in class:KeyCache.IdentityWrapper
61 IdentityWrapper(Object obj) { argument
62 this.obj = obj;
72 return this.obj == other.obj;
75 return System.identityHashCode(obj);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSessionId.java98 public boolean equals (Object obj) argument
100 if (!(obj instanceof SessionId))
103 SessionId s = (SessionId) obj;
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertAttrSet.java73 * @param obj the attribute object.
78 void set(String name, Object obj) argument
H A DOCSPNoCheckExtension.java97 public void set(String name, Object obj) throws IOException { argument
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DIntExpression.java49 public boolean equals(Object obj) { argument
50 if ((obj != null) && (obj instanceof IntExpression)) {
51 return value == ((IntExpression)obj).value;
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DBenchServer.java64 boolean unexport(Remote obj, boolean force) throws RemoteException; argument
H A DBenchServerImpl.java67 public boolean unexport(Remote obj, boolean force) throws RemoteException { argument
68 WeakReference iref = (WeakReference) implTable.get(obj);
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DEchoImpl.java52 public EchoImpl(ActivationID id, MarshalledObject obj) argument
56 new MultiSocketFactory.ClientFactory(getProtocol(obj), pattern),
57 new MultiSocketFactory.ServerFactory(getProtocol(obj), pattern));
61 MarshalledObject obj = null;
63 obj = new MarshalledObject(protocol);
67 return obj;
70 private static String getProtocol(MarshalledObject obj) { argument
73 protocol = (String) obj.get();
/openjdk7/jdk/test/java/rmi/server/RemoteObject/notExtending/
H A DNotExtending.java72 public boolean equals(Object obj) { argument
73 return stub.equals(obj);
/openjdk7/jdk/test/java/security/Permission/
H A DToString.java64 public boolean equals(Object obj) { argument
/openjdk7/jdk/test/javax/management/remote/mandatory/connectorServer/
H A DRMIExporterTest.java59 public Remote exportObject(Remote obj, argument
65 "Remote = " + obj);
66 if (obj.toString().startsWith(
69 if (obj.toString().startsWith(
72 return UnicastRemoteObject.exportObject(obj, port, csf, ssf);
75 public boolean unexportObject(Remote obj, boolean force) argument
78 "Remote = " + obj);
79 if (obj.toString().startsWith(
82 if (obj.toString().startsWith(
85 return UnicastRemoteObject.unexportObject(obj, forc
[all...]
/openjdk7/jdk/src/share/classes/sun/management/jmxremote/
H A DSingleEntryRegistry.java75 public void bind(String name, Remote obj) throws AccessException { argument
79 public void rebind(String name, Remote obj) throws AccessException { argument
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DNativeMethodAccessorImpl.java42 public Object invoke(Object obj, Object[] args) argument
57 return invoke0(method, obj, args);
64 private static native Object invoke0(Method m, Object obj, Object[] args); argument
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DMarshalOutputStream.java79 protected final Object replaceObject(Object obj) throws IOException { argument
80 if ((obj instanceof Remote) && !(obj instanceof RemoteStub)) {
81 Target target = ObjectTable.getTarget((Remote) obj);
86 return obj;
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DConnectionOutputStream.java85 void saveObject(Object obj) { argument
90 dgcAckHandler.add(obj);
H A DDGCAckHandler.java106 synchronized void add(Object obj) { argument
108 objList.add(obj);
H A DWeakRef.java55 public WeakRef(Object obj) { argument
56 super(obj);
57 setHashValue(obj); // cache object's "identity" hash code
63 public WeakRef(Object obj, ReferenceQueue<Object> q) { argument
64 super(obj, q);
65 setHashValue(obj); // cache object's "identity" hash code
108 private void setHashValue(Object obj) { argument
109 if (obj != null) {
110 hashValue = System.identityHashCode(obj);
124 * Return true if "obj" i
128 equals(Object obj) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbarClient.java35 public void notifyValue(XScrollbar obj, int type, int value, boolean isAdjusting); argument
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DFileKey.java56 public boolean equals(Object obj) { argument
57 if (obj == this)
59 if (!(obj instanceof FileKey))
61 FileKey other = (FileKey)obj;
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DGnomeFileTypeDetector.java60 public String implProbeContentType(Path obj) throws IOException { argument
63 if (!(obj instanceof UnixPath))
66 UnixPath path = (UnixPath)obj;
H A DLinuxFileSystemProvider.java54 public <V extends FileAttributeView> V getFileAttributeView(Path obj, argument
59 return (V) new LinuxDosFileAttributeView(UnixPath.toUnixPath(obj),
63 return (V) new LinuxUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),
66 return super.getFileAttributeView(obj, type, options);
70 public DynamicFileAttributeView getFileAttributeView(Path obj, argument
75 return new LinuxDosFileAttributeView(UnixPath.toUnixPath(obj),
79 return new LinuxUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),
82 return super.getFileAttributeView(obj, name, options);
H A DSolarisFileSystemProvider.java55 public <V extends FileAttributeView> V getFileAttributeView(Path obj, argument
60 return (V) new SolarisAclFileAttributeView(UnixPath.toUnixPath(obj),
64 return(V) new SolarisUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),
67 return super.getFileAttributeView(obj, type, options);
71 public DynamicFileAttributeView getFileAttributeView(Path obj, argument
76 return new SolarisAclFileAttributeView(UnixPath.toUnixPath(obj),
79 return new SolarisUserDefinedFileAttributeView(UnixPath.toUnixPath(obj),
81 return super.getFileAttributeView(obj, name, options);
/openjdk7/langtools/test/tools/javac/
H A DObject1.java37 public native boolean equals(Object obj); argument

Completed in 120 milliseconds

<<11121314151617181920>>