| /frameworks/base/core/java/android/transition/ |
| TransitionValues.java | 74 public int hashCode() { 75 return 31*view.hashCode() + values.hashCode(); 80 String returnValue = "TransitionValues@" + Integer.toHexString(hashCode()) + ":\n";
|
| /frameworks/base/core/java/android/util/ |
| Pair.java | 61 * @return a hashcode of the Pair 64 public int hashCode() { 65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
|
| /frameworks/base/media/java/android/media/ |
| AudioHandle.java | 46 public int hashCode() {
|
| DrmInitData.java | 83 public int hashCode() { 84 return mimeType.hashCode() + 31 * Arrays.hashCode(data);
|
| /frameworks/base/opengl/java/android/opengl/ |
| EGLObjectHandle.java | 61 public int hashCode() {
|
| /frameworks/base/opengl/java/com/google/android/gles_jni/ |
| EGLDisplayImpl.java | 40 public int hashCode() {
|
| EGLSurfaceImpl.java | 45 public int hashCode() {
|
| /frameworks/native/opengl/tools/glgen/static/egl/ |
| EGLObjectHandle.java | 61 public int hashCode() {
|
| /libcore/jsr166-tests/src/test/java/jsr166/ |
| EntryTest.java | 79 assertEquals(e2.hashCode(), e.hashCode()); 81 assertEquals(s2.hashCode(), s.hashCode()); 83 assertEquals(e2.hashCode(), s2.hashCode()); 85 assertEquals(e.hashCode(), s.hashCode());
|
| /libcore/luni/src/main/java/libcore/icu/ |
| CollationKeyICU.java | 65 public int hashCode() { 66 return key.hashCode();
|
| /libcore/luni/src/main/java/libcore/internal/ |
| StringPool.java | 45 int hashCode = 0; 47 hashCode = (hashCode * 31) + array[i]; 51 hashCode ^= (hashCode >>> 20) ^ (hashCode >>> 12); 52 hashCode ^= (hashCode >>> 7) ^ (hashCode >>> 4); 53 int index = hashCode & (pool.length - 1) [all...] |
| /libcore/luni/src/main/java/libcore/reflect/ |
| GenericArrayTypeImpl.java | 48 public int hashCode() { 49 return Objects.hashCode(getGenericComponentType());
|
| /libcore/ojluni/src/main/java/java/lang/annotation/ |
| Annotation.java | 91 * of the member-name as computed by {@link String#hashCode()}) XOR 97 * <tt><i>WrapperType</i>.valueOf(<i>v</i>).hashCode()</tt>, where 105 * <tt><i>v</i>.hashCode()</tt>. (In the case of annotation 110 * {@link java.util.Arrays#hashCode(long[]) Arrays.hashCode} 117 int hashCode();
|
| /libcore/ojluni/src/main/java/java/security/ |
| Principal.java | 61 * Returns a hashcode for this principal. 63 * @return a hashcode for this principal. 65 public int hashCode();
|
| /libcore/ojluni/src/main/java/java/security/spec/ |
| ECFieldFp.java | 95 public int hashCode() { 96 return p.hashCode();
|
| /libcore/ojluni/src/main/java/sun/nio/fs/ |
| UnixFileKey.java | 42 public int hashCode() {
|
| /packages/apps/Settings/src/com/android/settings/applications/ |
| UserAppInfo.java | 48 // As UserInfo and AppInfo do not support hashcode/equals contract, assume 55 public int hashCode() {
|
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
| NgramProperty.java | 31 public int hashCode() { 32 return mTargetWord.hashCode() ^ mNgramContext.hashCode();
|
| /external/guice/core/test/com/google/inject/internal/ |
| UniqueAnnotationsTest.java | 37 assertEquals(expected.hashCode(), actual.hashCode());
|
| /external/guice/extensions/multibindings/test/com/google/inject/multibindings/ |
| RealElementTest.java | 42 assertEquals(systemElement.hashCode(), realElement.hashCode());
|
| /libcore/luni/src/test/java/libcore/java/util/jar/ |
| OldAttributesNameTest.java | 50 assertNotSame(attr1.hashCode(), attr2.hashCode());
|
| /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
| FunctionsTest.java | 117 // check basic sanity of equals and hashCode 192 return (o == null) ? 0 : o.hashCode(); 210 assertEquals(c1.hashCode(), c2.hashCode()); 230 assertEquals(p1.hashCode(), p2.hashCode()); 298 public int hashCode() {
|
| /external/mockito/src/test/java/org/mockitousage/misuse/ |
| InvalidUsageTest.java | 93 int hashCode(); 102 inter.hashCode(); 112 clazz.hashCode();
|
| /libcore/luni/src/test/java/libcore/java/lang/ |
| BooleanTest.java | 38 assertEquals(Boolean.TRUE.hashCode(), Boolean.hashCode(true)); 39 assertEquals(Boolean.FALSE.hashCode(), Boolean.hashCode(false));
|
| /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/ |
| PhonenumberTest.java | 39 assertEquals(numberA.hashCode(), numberB.hashCode()); 51 assertEquals(numberA.hashCode(), numberB.hashCode()); 62 assertEquals(numberA.hashCode(), numberB.hashCode()); 73 assertFalse(numberA.hashCode() == numberB.hashCode()); 88 assertFalse(numberA.hashCode() == numberB.hashCode()); [all...] |