Searched defs:obj (Results 376 - 400 of 1229) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DThreadCpuTime.java38 private static Object obj = new Object(); field in class:ThreadCpuTime
135 synchronized (obj) {
137 obj.notifyAll();
194 synchronized (obj) {
197 obj.wait();
H A DThreadUserTime.java38 private static Object obj = new Object(); field in class:ThreadUserTime
135 synchronized (obj) {
137 obj.notifyAll();
194 synchronized (obj) {
197 obj.wait();
/openjdk7/langtools/src/share/classes/javax/lang/model/element/
H A DElement.java253 * @param obj the object to be compared with this element
257 boolean equals(Object obj); argument
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DKrbException.java139 @Override public boolean equals(Object obj) { argument
140 if (this == obj) {
144 if (!(obj instanceof KrbException)) {
148 KrbException other = (KrbException)obj;
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DAccessDescription.java90 public boolean equals(Object obj) { argument
91 if (obj == null || (!(obj instanceof AccessDescription))) {
94 AccessDescription that = (AccessDescription)obj;
H A DCertificateAlgorithmId.java118 public void set(String name, Object obj) throws IOException { argument
119 if (!(obj instanceof AlgorithmId)) {
123 algId = (AlgorithmId)obj;
H A DCertificateIssuerUniqueIdentity.java124 public void set(String name, Object obj) throws IOException { argument
125 if (!(obj instanceof UniqueIdentity)) {
129 id = (UniqueIdentity)obj;
H A DCertificateSubjectUniqueIdentity.java123 public void set(String name, Object obj) throws IOException { argument
124 if (!(obj instanceof UniqueIdentity)) {
128 id = (UniqueIdentity)obj;
H A DCertificateX509Key.java113 public void set(String name, Object obj) throws IOException { argument
115 this.key = (PublicKey)obj;
H A DDNSName.java142 public boolean equals(Object obj) { argument
143 if (this == obj)
146 if (!(obj instanceof DNSName))
149 DNSName other = (DNSName)obj;
H A DDistributionPointName.java192 * @param obj Object to be compared to this
195 public boolean equals(Object obj) { argument
196 if (this == obj) {
199 if (obj instanceof DistributionPointName == false) {
202 DistributionPointName other = (DistributionPointName)obj;
H A DGeneralNames.java131 public boolean equals(Object obj) { argument
132 if (this == obj) {
135 if (obj instanceof GeneralNames == false) {
138 GeneralNames other = (GeneralNames)obj;
H A DOIDName.java114 public boolean equals(Object obj) { argument
115 if (this == obj)
118 if (!(obj instanceof OIDName))
121 OIDName other = (OIDName)obj;
H A DRFC822Name.java136 public boolean equals(Object obj) { argument
137 if (this == obj)
140 if (!(obj instanceof RFC822Name))
143 RFC822Name other = (RFC822Name)obj;
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPool.java50 public int index(Object obj) { argument
51 return ((ConstantPoolData)hash.get(obj)).index;
57 public void put(Object obj) { argument
58 ConstantPoolData data = (ConstantPoolData)hash.get(obj);
60 if (obj instanceof String) {
61 data = new StringConstantData(this, (String)obj);
62 } else if (obj instanceof StringExpression) {
63 data = new StringExpressionConstantData(this, (StringExpression)obj);
64 } else if (obj instanceof ClassDeclaration) {
65 data = new ClassConstantData(this, (ClassDeclaration)obj);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDeclaration.java232 public boolean equals(Object obj) { argument
233 if ((obj != null) && (obj instanceof ClassDeclaration)) {
234 return type.equals(((ClassDeclaration)obj).type);
/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);
/openjdk7/jdk/test/java/util/concurrent/TimeUnit/
H A DBasic.java98 static byte[] serializedForm(Object obj) throws IOException { argument
100 new ObjectOutputStream(baos).writeObject(obj);
/openjdk7/jdk/src/share/native/sun/security/pkcs11/wrapper/
H A Dp11_dual.c71 (JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jPart)
79 CK_FUNCTION_LIST_PTR ckpFunctions = getFunctionList(env, obj);
123 (JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jEncryptedPart)
131 CK_FUNCTION_LIST_PTR ckpFunctions = getFunctionList(env, obj);
175 (JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jPart)
183 CK_FUNCTION_LIST_PTR ckpFunctions = getFunctionList(env, obj);
227 (JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jEncryptedPart)
235 CK_FUNCTION_LIST_PTR ckpFunctions = getFunctionList(env, obj);
276 (JNIEnv *env, jobject obj, jlong jSessionHandle)
281 CK_FUNCTION_LIST_PTR ckpFunctions = getFunctionList(env, obj);
70 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DigestEncryptUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jPart) argument
122 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptDigestUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jEncryptedPart) argument
174 Java_sun_security_pkcs11_wrapper_PKCS11_C_1SignEncryptUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jPart) argument
226 Java_sun_security_pkcs11_wrapper_PKCS11_C_1DecryptVerifyUpdate(JNIEnv *env, jobject obj, jlong jSessionHandle, jbyteArray jEncryptedPart) argument
275 Java_sun_security_pkcs11_wrapper_PKCS11_C_1GetFunctionStatus(JNIEnv *env, jobject obj, jlong jSessionHandle) argument
300 Java_sun_security_pkcs11_wrapper_PKCS11_C_1CancelFunction(JNIEnv *env, jobject obj, jlong jSessionHandle) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DBase64BinaryDV.java72 public boolean equals(Object obj) { argument
73 if (!(obj instanceof XBase64))
75 byte[] odata = ((XBase64)obj).data;
H A DHexBinaryDV.java69 public boolean equals(Object obj) { argument
70 if (!(obj instanceof XHex))
72 byte[] odata = ((XHex)obj).data;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DShortListImpl.java92 public boolean equals(Object obj) { argument
93 if (obj == null || !(obj instanceof ShortList)) {
96 ShortList rhs = (ShortList)obj;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/ior/
H A DStubIORImpl.java82 public StubIORImpl( org.omg.CORBA.Object obj )
85 OutputStream ostr = StubAdapter.getORB( obj ).create_output_stream();
86 ostr.write_Object(obj);
119 org.omg.CORBA.Object obj = (org.omg.CORBA.Object)istr.read_Object();
120 return StubAdapter.getDelegate( obj ) ;
218 public boolean equals(java.lang.Object obj) argument
220 if (this == obj) {
224 if (!(obj instanceof StubIORImpl)) {
228 StubIORImpl other = (StubIORImpl) obj;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/
H A DStubDelegateImpl.java105 * @param obj the reference object with which to compare.
106 * @return <code>true</code> if this object is the same as the <code>obj</code>
109 public boolean equals(javax.rmi.CORBA.Stub self, java.lang.Object obj) argument
111 if (self == obj) {
115 if (!(obj instanceof javax.rmi.CORBA.Stub)) {
121 javax.rmi.CORBA.Stub other = (javax.rmi.CORBA.Stub) obj;
134 public boolean equals( Object obj )
136 if (this == obj)
139 if (!(obj instanceof StubDelegateImpl))
142 StubDelegateImpl other = (StubDelegateImpl)obj ;
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DEndPointInfoImpl.java86 public boolean equals(Object obj) { argument
87 if (!(obj instanceof EndPointInfoImpl)) {
90 EndPointInfoImpl other = (EndPointInfoImpl)obj;

Completed in 114 milliseconds

<<11121314151617181920>>