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

1234567891011>>

/external/guava/guava/src/com/google/common/collect/
H A DHashing.java39 static int smear(int hashCode) { argument
40 hashCode ^= (hashCode >>> 20) ^ (hashCode >>> 12);
41 return hashCode ^ (hashCode >>> 7) ^ (hashCode >>> 4);
/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/android-mock/src/com/google/android/testing/mocking/
H A DGeneratedClassFile.java45 public int hashCode() { method in class:GeneratedClassFile
46 return (this.getClass().getName() + className).hashCode();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DPredicateLabel.java53 public int hashCode() { method in class:PredicateLabel
54 return semanticContext.hashCode();
H A DTransition.java66 public int hashCode() { method in class:Transition
67 return label.hashCode() + target.stateNumber;
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyPermission.java45 public int hashCode() { method in class:MyPermission
/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();

Completed in 340 milliseconds

1234567891011>>