Searched defs:hashCode (Results 76 - 100 of 794) sorted by relevance

1234567891011>>

/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberMatch.java102 public int hashCode() { method in class:PhoneNumberMatch
103 return Arrays.hashCode(new Object[]{start, rawString, number});
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSourceValue.java92 public int hashCode() { method in class:SourceValue
93 return insns.hashCode();
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DClassInfo.java39 public int hashCode() { method in class:ClassInfo
40 return getType().hashCode();
H A DMethodInfo.java39 public int hashCode() { method in class:MethodInfo
40 return getSignature().hashCode();
/external/mockito/src/org/mockito/internal/creation/
H A DDelegatingMethod.java45 public int hashCode() { method in class:DelegatingMethod
/external/mockito/src/org/mockito/internal/listeners/
H A DNotifiedMethodInvocationReport.java79 public int hashCode() { method in class:NotifiedMethodInvocationReport
80 int result = invocation != null ? invocation.hashCode() : 0;
81 result = 31 * result + (returnedValue != null ? returnedValue.hashCode() : 0);
82 result = 31 * result + (throwable != null ? throwable.hashCode() : 0);
/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsMockWrapper.java10 * hashCode and equals safe mock wrapper.
13 * It doesn't use the actual mock {@link Object#hashCode} and {@link Object#equals} method as they might
20 * <li>For hashCode : <strong>use {@link System#identityHashCode}</strong></li>
50 public int hashCode() { method in class:HashCodeAndEqualsMockWrapper
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DDecoderSpecificInfo.java82 public int hashCode() { method in class:DecoderSpecificInfo
83 return bytes != null ? Arrays.hashCode(bytes) : 0;
H A DProfileLevelIndicationDescriptor.java67 public int hashCode() { method in class:ProfileLevelIndicationDescriptor
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DRoute.java75 public int hashCode() { method in class:Route
76 return this.address.getHostPort().encode().toLowerCase().hashCode();
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHandshake.java113 @Override public int hashCode() { method in class:Handshake
115 result = 31 * result + cipherSuite.hashCode();
116 result = 31 * result + peerCertificates.hashCode();
117 result = 31 * result + localCertificates.hashCode();
H A DRoute.java89 @Override public int hashCode() { method in class:Route
91 result = 31 * result + address.hashCode();
92 result = 31 * result + proxy.hashCode();
93 result = 31 * result + inetSocketAddress.hashCode();
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DFilterUrlByProtocolAttributePolicy.java158 public int hashCode() { method in class:FilterUrlByProtocolAttributePolicy
159 return protocols.hashCode();
/external/proguard/src/proguard/
H A DKeepClassSpecification.java115 public int hashCode() method in class:KeepClassSpecification
123 super.hashCode();
/external/proguard/src/proguard/evaluation/value/
H A DCompositeDoubleValue.java69 public int hashCode() method in class:CompositeDoubleValue
71 return super.hashCode() ^
72 doubleValue1.hashCode() ^
73 doubleValue2.hashCode();
H A DCompositeFloatValue.java69 public int hashCode() method in class:CompositeFloatValue
71 return super.hashCode() ^
72 floatValue1.hashCode() ^
73 floatValue2.hashCode();
H A DTopValue.java69 public int hashCode() method in class:TopValue
71 return this.getClass().hashCode();
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DInternalNano.java264 public static int hashCode(int[] field) { method in class:InternalNano
265 return field == null || field.length == 0 ? 0 : Arrays.hashCode(field);
272 public static int hashCode(long[] field) { method in class:InternalNano
273 return field == null || field.length == 0 ? 0 : Arrays.hashCode(field);
280 public static int hashCode(float[] field) { method in class:InternalNano
281 return field == null || field.length == 0 ? 0 : Arrays.hashCode(field);
288 public static int hashCode(double[] field) { method in class:InternalNano
289 return field == null || field.length == 0 ? 0 : Arrays.hashCode(field);
296 public static int hashCode(boolean[] field) { method in class:InternalNano
297 return field == null || field.length == 0 ? 0 : Arrays.hashCode(fiel
305 public static int hashCode(byte[][] field) { method in class:InternalNano
322 public static int hashCode(Object[] field) { method in class:InternalNano
[all...]
H A DUnknownFieldData.java78 public int hashCode() { method in class:UnknownFieldData
81 result = 31 * result + Arrays.hashCode(bytes);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowColorDrawable.java34 public int hashCode() { method in class:ShadowColorDrawable
35 int result = super.hashCode();
H A DShadowGeoPoint.java48 public int hashCode() { method in class:ShadowGeoPoint
H A DShadowOverlayItem.java56 public int hashCode() { method in class:ShadowOverlayItem
58 result = title == null ? result : 19 * result + title.hashCode();
59 result = snippet == null ? result : 19 * result + snippet.hashCode();
60 result = geoPoint == null ? result : 19 * result + geoPoint.hashCode();
/external/smack/src/com/kenai/jbosh/
H A DAbstractAttr.java22 * type's behavior for {@code equals()}, {@code hashCode()},
81 * @return hashCode of the encapsulated object
84 public int hashCode() { method in class:AbstractAttr
85 return value.hashCode();
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractMapEntry.java79 * Gets a hashCode compatible with the equals method.
81 * Implemented per API documentation of {@link java.util.Map.Entry#hashCode()}
85 public int hashCode() { method in class:AbstractMapEntry
86 return (getKey() == null ? 0 : getKey().hashCode()) ^ (getValue() == null ? 0 : getValue().hashCode());
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/
H A DBaseExceptionHandler.java59 public int hashCode() { method in class:BaseExceptionHandler
61 int hashCode = exceptionType==null?0:exceptionType.hashCode();
62 return hashCode*31 + getHandlerCodeAddress();

Completed in 478 milliseconds

1234567891011>>