Searched defs:hashCode (Results 151 - 175 of 252) sorted by relevance

1234567891011

/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java204 public int hashCode() { method in class:ObjectInputStreamTest.LongString
205 return lString.hashCode();
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DPackage.java251 public int hashCode() { method in class:Package
252 return name.hashCode();
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DConstructor.java285 * @see #hashCode
392 public int hashCode() { method in class:Constructor
393 return declaringClass.getName().hashCode();
/dalvik/libcore/luni-kernel/src/main/java/org/apache/harmony/lang/annotation/
H A DAnnotationMember.java195 // this is needed for consistency with hashCode()
252 * <code> (name.hashCode() * 127) ^ value.hashCode() </code>
253 * <br>If value is an array, one of overloaded Arrays.hashCode()
256 * @see java.util.Arrays#hashCode(java.lang.Object[])
257 * @see java.lang.annotation.Annotation#hashCode()
259 public int hashCode() { method in class:AnnotationMember
260 int hash = name.hashCode() * 127;
264 return hash ^ Arrays.hashCode((int[])value);
266 return hash ^ Arrays.hashCode((byt
[all...]
/dalvik/libcore/nio/src/main/java/java/nio/
H A DDoubleBuffer.java365 public int hashCode() { method in class:DoubleBuffer
H A DFloatBuffer.java365 public int hashCode() { method in class:FloatBuffer
H A DIntBuffer.java352 public int hashCode() { method in class:IntBuffer
H A DLongBuffer.java355 public int hashCode() { method in class:LongBuffer
H A DShortBuffer.java354 public int hashCode() { method in class:ShortBuffer
/dalvik/libcore/security/src/main/java/java/security/
H A DIdentity.java386 * by the general contract of {@link Object#hashCode}.
393 public int hashCode() { method in class:Identity
396 hash += name.hashCode();
399 hash += scope.hashCode();
H A DUnresolvedPermission.java198 * {@link Object#hashCode}.
205 public int hashCode() { method in class:UnresolvedPermission
207 hash = getName().hashCode();
209 hash ^= name.hashCode();
212 hash ^= actions.hashCode();
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DExtensions.java389 public int hashCode() { method in class:Extensions
392 hashcode = extensions.hashCode();
H A DTBSCertList.java157 public int hashCode() { method in class:TBSCertList.RevokedCertificate
158 return userCertificate.hashCode() * 37 + (int)revocationDate.getTime() / 1000
159 + (crlEntryExtensions == null ? 0 : crlEntryExtensions.hashCode());
367 public int hashCode() { method in class:TBSCertList
368 return ((version * 37 + signature.hashCode()) * 37
369 + issuer.getEncoded().hashCode()) * 37
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DASN1Collection.java73 public final int hashCode() { method in class:ASN1Collection
75 int hashCode = 0;
81 hashCode ^= o.hashCode();
85 return hashCode;
/dalvik/libcore/text/src/main/java/java/text/
H A DChoiceFormat.java209 * @see #hashCode
295 public int hashCode() { method in class:ChoiceFormat
296 int hashCode = 0;
299 hashCode += (int) (v ^ (v >>> 32)) + choiceFormats[i].hashCode();
301 return hashCode;
H A DDateFormatSymbols.java181 * @see #hashCode
343 public int hashCode() { method in class:DateFormatSymbols
347 int hashCode;
348 hashCode = localPatternChars.hashCode();
350 hashCode += element.hashCode();
353 hashCode += element.hashCode();
356 hashCode
[all...]
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DCollatorTest.java511 public int hashCode() { method in class:CollatorTest.TestCollator
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
H A DAbstractSessionContext.java190 * Byte array wrapper. Implements equals() and hashCode().
201 public int hashCode() { method in class:AbstractSessionContext.ByteArray
202 return Arrays.hashCode(bytes);
/dalvik/libcore/xml/src/main/java/javax/xml/datatype/
H A DDuration.java871 * @see Object#hashCode()
873 public abstract int hashCode(); method in class:Duration
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DQName.java125 m_hashCode = toString().hashCode();
179 m_hashCode = toString().hashCode();
221 m_hashCode = toString().hashCode();
312 m_hashCode = toString().hashCode();
400 m_hashCode = toString().hashCode();
479 m_hashCode = toString().hashCode();
571 public int hashCode() method in class:QName
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DAudioFileFormat.java144 public final int hashCode() { method in class:AudioFileFormat.Type
145 return (name == null ? 0 : name.hashCode()) +
146 (extension == null ? 0 : extension.hashCode());
H A DAudioFormat.java56 public final int hashCode() { method in class:AudioFormat.Encoding
57 return name == null ? 0 : name.hashCode();
H A DMixer.java57 public final int hashCode() { method in class:Mixer.Info
58 return name.hashCode() + vendor.hashCode() + description.hashCode() + version.hashCode();
/dalvik/dx/src/com/android/dx/rop/code/
H A DInsn.java92 public final int hashCode() { method in class:Insn
H A DRegisterSpec.java260 public int hashCode() { method in class:RegisterSpec
265 * Helper for {@link #hashCode} and {@link #ForComparison.hashCode},
274 int hash = (local != null) ? local.hashCode() : 0;
276 hash = (hash * 31 + type.hashCode()) * 31 + reg;
646 public int hashCode() { method in class:RegisterSpec.ForComparison

Completed in 270 milliseconds

1234567891011