Searched defs:equals (Results 226 - 250 of 1030) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/declaration/
H A DParameterDeclarationImpl.java65 public boolean equals(Object obj) { method in class:ParameterDeclarationImpl
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/type/
H A DTypeMirrorImpl.java61 public boolean equals(Object obj) { method in class:TypeMirrorImpl
/openjdk7/langtools/src/share/classes/javax/lang/model/type/
H A DTypeMirror.java68 * Obeys the general contract of {@link Object#equals Object.equals}.
73 * The results of {@code t1.equals(t2)} and
79 boolean equals(Object obj); method in interface:TypeMirror
84 * @see #equals
/openjdk7/jdk/src/share/classes/sun/security/jgss/spi/
H A DGSSNameSpi.java53 public boolean equals(GSSNameSpi name) throws GSSException; method in interface:GSSNameSpi
58 * the same as in {@link #equals(GSSNameSpi) equals} except that
64 * @see #equals(GSSNameSpi)
66 public boolean equals(Object another); method in interface:GSSNameSpi
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/rcache/
H A DAuthTime.java55 * Compares if an object equals to an <code>AuthTime</code> object.
59 public boolean equals(Object o) { method in class:AuthTime
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DEncryptedPrivateKeyInfo.java139 public boolean equals(Object other) { method in class:EncryptedPrivateKeyInfo
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DKeyCache.java64 public boolean equals(Object o) { method in class:KeyCache.IdentityWrapper
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSessionId.java98 public boolean equals (Object obj) method in class:SessionId
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBigInt.java166 public boolean equals(Object other) { method in class:BigInt
168 return equals((BigInt) other);
177 public boolean equals(BigInt other) { method in class:BigInt
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificatePolicyId.java89 * equality. Uses ObjectIdentifier.equals() as test for
94 public boolean equals(Object other) { method in class:CertificatePolicyId
96 return id.equals(((CertificatePolicyId) other).getIdentifier());
H A DGeneralName.java198 public boolean equals(Object other) { method in class:GeneralName
H A DKeyIdentifier.java146 public boolean equals(Object other) { method in class:KeyIdentifier
151 return java.util.Arrays.equals(octetString,
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXObject.java50 public boolean equals(Object o) { method in class:XObject
53 return object.equals(((XObject)o).getObject());
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DDoubleExpression.java59 public boolean equals(int i) { method in class:DoubleExpression
H A DFloatExpression.java59 public boolean equals(int i) { method in class:FloatExpression
H A DIntExpression.java49 public boolean equals(Object obj) { method in class:IntExpression
H A DLongExpression.java59 public boolean equals(int i) { method in class:LongExpression
H A DNullExpression.java49 public boolean equals(int i) { method in class:NullExpression
/openjdk7/jdk/test/java/rmi/server/RemoteObject/notExtending/
H A DNotExtending.java27 * implement hashCode() and equals() methods so that instances
72 public boolean equals(Object obj) { method in class:NotExtending
73 return stub.equals(obj);
96 * Verify that passing stub to server's equals() method
99 if (server.equals(server.stub)) {
101 "Passing stub to server's equals() method succeeded.");
104 "passing stub to server's equals() method failed");
108 * Verify that passing server to stub's equals() method
111 if (server.stub.equals(server)) {
113 "Passing server to stub's equals() metho
[all...]
/openjdk7/jdk/test/java/security/Permission/
H A DToString.java42 if (!dummyPerm.toString().equals(dummyPerm.getDescription())) {
48 if (!nullActionPerm.toString().equals(nullActionPerm.getDescription())) {
64 public boolean equals(Object obj) { method in class:ToString.SimplePermission
/openjdk7/jdk/test/java/util/Collections/
H A DReverseOrder.java41 if (!list.equals(goldenList))
55 public boolean equals(Object o) { method in class:Foo
H A DViewSynch.java61 * Like Integer, except yields while doing equals comparison, to allow
68 public boolean equals(Object o) { method in class:Int
71 return x.equals(i.x);
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DFooDateFormat.java52 public boolean equals(Object other) { method in class:FooDateFormat
54 && sdf.equals(((FooDateFormat)other).sdf);
/openjdk7/jdk/test/javax/management/proxy/
H A DProxyObjectMethodsTest.java80 if (!simple0.equals(simple1) ||
81 simple0.equals(simple) ||
82 simple0.equals(simple3)) {
83 throw new RuntimeException("The method equals does not work correctly.");
91 if (!simple0.toString().equals(simple1.toString()) ||
92 simple.toString().equals(simple0.toString())) {
96 /* Sorry about this. This is the equals(String) method,
98 if (!simple0.equals("foo").equals("foo"))
99 throw new RuntimeException("The method equals(Strin
160 public String equals(String x); method in interface:ProxyObjectMethodsTest.SimpleMBean
164 public String equals(String x) { method in class:ProxyObjectMethodsTest.Simple
170 public boolean equals(Object o); method in interface:ProxyObjectMethodsTest.TestMBean
178 public boolean equals(Object o) { method in class:ProxyObjectMethodsTest.Test
[all...]
/openjdk7/jdk/test/javax/management/remote/mandatory/passwordAccessFile/
H A DNonJMXPrincipalsTest.java76 public boolean equals(Object o) { method in class:NonJMXPrincipalsTest.OtherPrincipal
84 return (this.getName().equals(that.getName()));

Completed in 158 milliseconds

1234567891011>>