Searched defs:hashCode (Results 51 - 75 of 252) sorted by relevance

1234567891011

/dalvik/libcore/text/src/main/java/java/text/
H A DParsePosition.java49 * @see #hashCode
80 public int hashCode() { method in class:ParsePosition
H A DRuleBasedCollator.java434 public int hashCode() { method in class:RuleBasedCollator
436 .hashCode();
449 * @see #hashCode
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DControl.java45 public final int hashCode() { method in class:Control.Type
46 return name == null ? 0 : name.hashCode();
/dalvik/dx/src/com/android/dx/cf/code/
H A DReturnAddress.java96 public int hashCode() { method in class:ReturnAddress
/dalvik/dx/src/com/android/dx/dex/file/
H A DFieldAnnotationStruct.java57 public int hashCode() { method in class:FieldAnnotationStruct
58 return field.hashCode();
H A DMethodAnnotationStruct.java57 public int hashCode() { method in class:MethodAnnotationStruct
58 return method.hashCode();
H A DParameterAnnotationStruct.java81 public int hashCode() { method in class:ParameterAnnotationStruct
82 return method.hashCode();
H A DTypeListItem.java55 public int hashCode() { method in class:TypeListItem
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalItem.java108 public int hashCode() { method in class:LocalItem
109 return (name == null ? 0 : name.hashCode()) * 31
110 + (signature == null ? 0 : signature.hashCode());
H A DSourcePosition.java113 public int hashCode() { method in class:SourcePosition
114 return sourceFile.hashCode() + address + line;
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstKnownNull.java44 public int hashCode() { method in class:CstKnownNull
H A DCstMemberRef.java62 public final int hashCode() { method in class:CstMemberRef
63 return (definingClass.hashCode() * 31) ^ nat.hashCode();
H A DCstString.java63 public int hashCode() { method in class:CstString
64 return string.hashCode();
/dalvik/libcore/luni/src/main/java/java/lang/
H A DEnum.java102 public final int hashCode() { method in class:Enum
103 return ordinal + (name == null ? 0 : name.hashCode());
/dalvik/libcore/luni/src/main/java/java/util/
H A DCollection.java169 * @see #hashCode
181 public int hashCode(); method in interface:Collection
H A DMapEntry.java74 public int hashCode() { method in class:MapEntry
75 return (key == null ? 0 : key.hashCode())
76 ^ (value == null ? 0 : value.hashCode());
H A DPropertyPermission.java93 * @see #hashCode
124 public int hashCode() { method in class:PropertyPermission
125 return super.hashCode();
H A DSet.java100 * @see #hashCode
112 public int hashCode(); method in interface:Set
/dalvik/libcore/security/src/main/java/java/security/
H A DBasicPermission.java122 * as required by the general contract of {@link Object#hashCode}.
129 public int hashCode() { method in class:BasicPermission
130 return getName().hashCode();
/dalvik/libcore/security/src/main/java/java/security/cert/
H A DCertPath.java94 * Overrides {@code Object.hashCode()}. The function is defined as follows:
96 * {@code hashCode = 31 * path.getType().hashCode() +
97 * path.getCertificates().hashCode();}
102 public int hashCode() { method in class:CertPath
103 int hash = getType().hashCode();
104 hash = hash*31 + getCertificates().hashCode();
/dalvik/libcore/security/src/main/java/java/security/spec/
H A DECFieldF2m.java263 public int hashCode() { method in class:ECFieldF2m
264 return rp == null ? m : m + rp.hashCode();
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
H A DObjectIdentifier.java110 * @see java.lang.Object#hashCode()
112 public int hashCode() { method in class:ObjectIdentifier
113 // FIXME change me to Arrays.hashCode(int[])
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
H A DAlgorithmIdentifier.java146 public int hashCode() { method in class:AlgorithmIdentifier
147 return algorithm.hashCode() * 37 +
148 (parameters != null ? parameters.hashCode() : 0);
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
H A DASN1TaggedObject.java117 public int hashCode() method in class:ASN1TaggedObject
123 code ^= obj.hashCode();
H A DDERBoolean.java122 public int hashCode() method in class:DERBoolean

Completed in 3027 milliseconds

1234567891011