Searched defs:equals (Results 1 - 25 of 171) sorted by relevance

1234567

/libcore/luni/src/main/java/java/security/
H A DPrincipal.java37 public boolean equals( Object obj ); method in interface:Principal
52 * @see Object#equals(Object)
53 * @see Principal#equals(Object)
H A DCodeSigner.java69 public boolean equals(Object obj) { method in class:CodeSigner
75 if (!signerCertPath.equals(that.signerCertPath)) {
79 .equals(that.timestamp);
109 * @see Object#equals(Object)
110 * @see CodeSigner#equals(Object)
H A DTimestamp.java78 public boolean equals(Object obj) { method in class:Timestamp
84 return timestamp.equals(that.timestamp)
85 && signerCertPath.equals(that.signerCertPath);
114 * @see Object#equals(Object)
115 * @see Timestamp#equals(Object)
/libcore/luni/src/main/java/java/security/acl/
H A DPermission.java24 boolean equals(Object another); method in interface:Permission
/libcore/luni/src/main/java/java/lang/annotation/
H A DAnnotation.java52 * {@code Integer.valueOf(x).equals(Integer.valueOf(y)} is used for
63 * is determined using the corresponding {@code equals(x, y)}
68 * calling their {@code equals()} method.
78 boolean equals(Object obj); method in interface:Annotation
/libcore/luni/src/main/java/java/security/spec/
H A DECFieldFp.java76 public boolean equals(Object obj) { method in class:ECFieldFp
77 // object equals itself
82 return (this.p.equals(((ECFieldFp)obj).p));
H A DECPoint.java88 public boolean equals(Object other) { method in class:ECPoint
96 return this.affineX.equals(otherPoint.affineX) &&
97 this.affineY.equals(otherPoint.affineY);
H A DEllipticCurve.java163 * Returns whether the specified object equals to this elliptic curve.
170 public boolean equals(Object other) { method in class:EllipticCurve
178 return this.field.equals(otherEc.field) && this.a.equals(otherEc.a)
179 && this.b.equals(otherEc.b)
180 && Arrays.equals(this.seed, otherEc.seed);
/libcore/luni/src/main/java/java/sql/
H A DRowId.java26 boolean equals(Object obj); method in interface:RowId
/libcore/luni/src/main/java/java/util/
H A DAbstractSet.java48 public boolean equals(Object object) { method in class:AbstractSet
72 * @see #equals
H A DComparator.java24 * to be <i>consistent with equals</i>, its {code #compare(Object, Object)}
25 * method has to return zero for each pair of elements (a,b) where a.equals(b)
70 * @see Object#equals
72 public boolean equals(Object object); method in interface:Comparator
/libcore/luni/src/main/java/libcore/reflect/
H A DGenericArrayTypeImpl.java39 public boolean equals(Object o) { method in class:GenericArrayTypeImpl
44 return Objects.equals(getGenericComponentType(), that.getGenericComponentType());
H A DWildcardTypeImpl.java44 public boolean equals(Object o) { method in class:WildcardTypeImpl
49 return Arrays.equals(getLowerBounds(), that.getLowerBounds()) &&
50 Arrays.equals(getUpperBounds(), that.getUpperBounds());
/libcore/luni/src/main/java/java/net/
H A DInterfaceAddress.java77 public boolean equals(Object obj) { method in class:InterfaceAddress
85 return ((address == null) ? rhs.address == null : address.equals(rhs.address)) &&
87 ((broadcastAddress == null) ? rhs.broadcastAddress == null : broadcastAddress.equals(rhs.broadcastAddress));
H A DProxy.java129 public final boolean equals(Object obj) { method in class:Proxy
138 return (type == another.type) && address.equals(another.address);
/libcore/luni/src/main/java/java/security/cert/
H A DX509CRLEntry.java41 * Returns whether the specified object equals to this instance.
45 * @return {@code true} if the specified object equals to this instance,
48 public boolean equals(Object other) { method in class:X509CRLEntry
57 return Arrays.equals(getEncoded(), obj.getEncoded());
/libcore/luni/src/main/java/java/text/
H A DParsePosition.java52 public boolean equals(Object object) { method in class:ParsePosition
H A DRuleBasedCollator.java226 public boolean equals(Object obj) { method in class:RuleBasedCollator
230 return super.equals(obj);
/libcore/luni/src/main/java/javax/crypto/spec/
H A DRC2ParameterSpec.java133 public boolean equals(Object obj) { method in class:RC2ParameterSpec
142 && (Arrays.equals(iv, ps.iv));
H A DRC5ParameterSpec.java180 public boolean equals(Object obj) { method in class:RC5ParameterSpec
191 && (Arrays.equals(iv, ps.iv));
H A DSecretKeySpec.java167 public boolean equals(Object obj) { method in class:SecretKeySpec
176 && (Arrays.equals(key, ks.key));
/libcore/luni/src/main/java/javax/security/cert/
H A DCertificate.java55 public boolean equals(Object obj) { method in class:Certificate
64 return Arrays.equals(getEncoded(), object.getEncoded());
72 * return <code>true</code> when passed to <code>equals</code> must answer
76 * @see #equals
/libcore/luni/src/main/java/libcore/icu/
H A DCollationKeyICU.java74 @Override public boolean equals(Object object) { method in class:CollationKeyICU
/libcore/support/src/test/java/tests/support/
H A DSupport_Proxy_I1.java21 boolean equals(Object o); method in interface:Support_Proxy_I1
/libcore/libart/src/main/java/java/lang/
H A DEnum.java115 public final boolean equals(Object other) { method in class:Enum
196 if (name.equals(value.name())) {

Completed in 317 milliseconds

1234567