Searched defs:hashCode (Results 1 - 25 of 246) sorted by relevance

12345678910

/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DASN1Null.java17 public int hashCode() method in class:ASN1Null
H A DDERObject.java14 public abstract int hashCode(); method in class:DERObject
H A DASN1Encodable.java73 public int hashCode() method in class:ASN1Encodable
75 return this.toASN1Object().hashCode();
/external/guava/src/com/google/common/collect/
H A DForwardingSet.java45 @Override public int hashCode() { method in class:ForwardingSet
46 return delegate().hashCode();
/external/nist-sip/java/javax/sip/header/
H A DHeader.java10 int hashCode(); method in interface:Header
/external/proguard/src/proguard/
H A DMemberSpecification.java105 public int hashCode() method in class:MemberSpecification
110 (annotationType == null ? 0 : annotationType.hashCode()) ^
111 (name == null ? 0 : name.hashCode() ) ^
112 (descriptor == null ? 0 : descriptor.hashCode() );
/external/proguard/src/proguard/evaluation/value/
H A DConvertedByteValue.java53 public int hashCode() method in class:ConvertedByteValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedCharacterValue.java53 public int hashCode() method in class:ConvertedCharacterValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedDoubleValue.java53 public int hashCode() method in class:ConvertedDoubleValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedFloatValue.java53 public int hashCode() method in class:ConvertedFloatValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedIntegerValue.java53 public int hashCode() method in class:ConvertedIntegerValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedLongValue.java53 public int hashCode() method in class:ConvertedLongValue
55 return super.hashCode() ^
56 value.hashCode();
H A DConvertedShortValue.java53 public int hashCode() method in class:ConvertedShortValue
55 return super.hashCode() ^
56 value.hashCode();
H A DIdentifiedDoubleValue.java55 public int hashCode() method in class:IdentifiedDoubleValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedFloatValue.java55 public int hashCode() method in class:IdentifiedFloatValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedIntegerValue.java55 public int hashCode() method in class:IdentifiedIntegerValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DIdentifiedLongValue.java55 public int hashCode() method in class:IdentifiedLongValue
57 return super.hashCode() ^
58 valuefactory.hashCode() ^
H A DNegatedDoubleValue.java60 public int hashCode() method in class:NegatedDoubleValue
62 return super.hashCode() ^
63 doubleValue.hashCode();
H A DNegatedFloatValue.java60 public int hashCode() method in class:NegatedFloatValue
62 return super.hashCode() ^
63 floatValue.hashCode();
H A DNegatedIntegerValue.java60 public int hashCode() method in class:NegatedIntegerValue
62 return super.hashCode() ^
63 integerValue.hashCode();
H A DNegatedLongValue.java60 public int hashCode() method in class:NegatedLongValue
62 return super.hashCode() ^
63 longValue.hashCode();
/external/apache-http/src/org/apache/http/auth/
H A DBasicUserPrincipal.java61 public int hashCode() { method in class:BasicUserPrincipal
63 hash = LangUtils.hashCode(hash, this.username);
H A DNTUserPrincipal.java87 public int hashCode() { method in class:NTUserPrincipal
89 hash = LangUtils.hashCode(hash, this.username);
90 hash = LangUtils.hashCode(hash, this.domain);
H A DUsernamePasswordCredentials.java103 public int hashCode() { method in class:UsernamePasswordCredentials
104 return this.principal.hashCode();
/external/apache-http/src/org/apache/http/message/
H A DBasicNameValuePair.java178 public int hashCode() { method in class:BasicNameValuePair
180 hash = LangUtils.hashCode(hash, this.name);
181 hash = LangUtils.hashCode(hash, this.value);

Completed in 145 milliseconds

12345678910