Searched defs:hashCode (Results 101 - 125 of 794) sorted by last modified time

1234567891011>>

/external/robolectric/src/main/java/android/net/
H A DUri__FromAndroid.java331 public int hashCode() { method in class:Uri__FromAndroid
332 return toString().hashCode();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectricConfig.java315 public int hashCode() { method in class:RobolectricConfig
316 int result = androidManifestFile != null ? androidManifestFile.hashCode() : 0;
317 result = 31 * result + (getResourceDirectory() != null ? getResourceDirectory().hashCode() : 0);
318 result = 31 * result + (getAssetsDirectory() != null ? getAssetsDirectory().hashCode() : 0);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAccount.java76 public int hashCode() { method in class:ShadowAccount
78 result = 31 * result + realObject.name.hashCode();
79 result = 31 * result + realObject.type.hashCode();
H A DShadowBitmap.java168 public int hashCode() { method in class:ShadowBitmap
171 result = 31 * result + (description != null ? description.hashCode() : 0);
H A DShadowBitmapDrawable.java131 public int hashCode() { method in class:ShadowBitmapDrawable
132 return bitmap != null ? bitmap.hashCode() : 0;
H A DShadowBundle.java450 public int hashCode() { method in class:ShadowBundle
451 return map != null ? map.hashCode() : 0;
H A DShadowColorDrawable.java34 public int hashCode() { method in class:ShadowColorDrawable
35 int result = super.hashCode();
H A DShadowComponentName.java94 public int hashCode() { method in class:ShadowComponentName
95 int result = pkg != null ? pkg.hashCode() : 0;
96 result = 31 * result + (cls != null ? cls.hashCode() : 0);
H A DShadowContentValues.java302 public int hashCode() { method in class:ShadowContentValues
303 return values.hashCode();
H A DShadowDrawable.java168 public int hashCode() { method in class:ShadowDrawable
169 int result = bounds != null ? bounds.hashCode() : 0;
H A DShadowGeoPoint.java48 public int hashCode() { method in class:ShadowGeoPoint
H A DShadowHtml.java83 public int hashCode() { method in class:ShadowHtml.SpannedThatActsLikeString
84 return source != null ? source.hashCode() : 0;
H A DShadowIntent.java561 public int hashCode() { method in class:ShadowIntent
562 int result = extras != null ? extras.hashCode() : 0;
563 result = 31 * result + (action != null ? action.hashCode() : 0);
564 result = 31 * result + (componentName != null ? componentName.hashCode() : 0);
565 result = 31 * result + (data != null ? data.hashCode() : 0);
566 result = 31 * result + (type != null ? type.hashCode() : 0);
H A DShadowLocation.java218 public int hashCode() { method in class:ShadowLocation
222 result = 31 * result + (provider != null ? provider.hashCode() : 0);
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();
H A DShadowPair.java29 public int hashCode() { method in class:ShadowPair
30 return realPair.first.hashCode() + realPair.second.hashCode();
H A DShadowPath.java97 public int hashCode() { method in class:ShadowPath.Point
100 result = 31 * result + (type != null ? type.hashCode() : 0);
H A DShadowPendingIntent.java109 public int hashCode() { method in class:ShadowPendingIntent
116 result = prime * result + ((savedIntent == null) ? 0 : savedIntent.hashCode());
H A DShadowPoint.java60 public int hashCode() { method in class:ShadowPoint
H A DShadowPointF.java62 public int hashCode() { method in class:ShadowPointF
H A DShadowSignature.java46 public int hashCode() { method in class:ShadowSignature
47 return Arrays.hashCode(mSignature);
H A DShadowSparseBooleanArray.java86 public int hashCode() { method in class:ShadowSparseBooleanArray
87 return sparseArray.hashCode();
H A DShadowTextView.java356 public int hashCode() { method in class:ShadowTextView
357 return super.hashCode();
569 public int hashCode() { method in class:ShadowTextView.CompoundDrawables
/external/robolectric/src/test/java/com/xtremelabs/robolectric/bytecode/
H A DShadowWranglerTest.java84 assertEquals(42, foo.hashCode());
178 public int hashCode() { method in class:ShadowWranglerTest.WithEquals
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DIntentTest.java460 public int hashCode() { method in class:IntentTest.TestSerializable
461 return someValue != null ? someValue.hashCode() : 0;

Completed in 189 milliseconds

1234567891011>>