Searched defs:hashCode (Results 1 - 25 of 257) sorted by last modified time

1234567891011

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java804 public int hashCode() { method in class:ActivityChooserModel.HistoricalRecord
807 result = prime * result + ((activity == null) ? 0 : activity.hashCode());
878 public int hashCode() { method in class:ActivityChooserModel.ActivityResolveInfo
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java867 result = 31 * result + lp.hashCode();
2101 public int hashCode() { method in class:GridLayout.LayoutParams
2102 int result = rowSpec.hashCode();
2103 result = 31 * result + columnSpec.hashCode();
2385 public int hashCode() { method in class:GridLayout.Interval
2488 public int hashCode() { method in class:GridLayout.Spec
2489 int result = span.hashCode();
2490 result = 31 * result + alignment.hashCode();
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDiscoveryRequest.java100 public int hashCode() { method in class:MediaRouteDiscoveryRequest
101 return getSelector().hashCode() ^ (isActiveScan() ? 1 : 0);
H A DMediaRouteSelector.java175 public int hashCode() { method in class:MediaRouteSelector
177 return mControlCategories.hashCode();
/frameworks/support/v7/palette/src/android/support/v7/graphics/
H A DPalette.java442 public int hashCode() { method in class:Palette
443 int result = mSwatches != null ? mSwatches.hashCode() : 0;
444 result = 31 * result + (mVibrantSwatch != null ? mVibrantSwatch.hashCode() : 0);
445 result = 31 * result + (mMutedSwatch != null ? mMutedSwatch.hashCode() : 0);
446 result = 31 * result + (mDarkVibrantSwatch != null ? mDarkVibrantSwatch.hashCode() : 0);
447 result = 31 * result + (mDarkMutedSwatch != null ? mDarkMutedSwatch.hashCode() : 0);
448 result = 31 * result + (mLightVibrantSwatch != null ? mLightVibrantSwatch.hashCode() : 0);
449 result = 31 * result + (mLightMutedColor != null ? mLightMutedColor.hashCode() : 0);
680 public int hashCode() { method in class:Palette.Swatch
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DAdapterHelper.java676 public int hashCode() { method in class:AdapterHelper.UpdateOp
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DStaggeredGridLayoutManagerTest.java1800 public int hashCode() { method in class:StaggeredGridLayoutManagerTest.VisibleChildren
1801 int result = firstVisiblePositions != null ? Arrays.hashCode(firstVisiblePositions) : 0;
1803 .hashCode(firstFullyVisiblePositions) : 0);
1805 .hashCode(lastVisiblePositions)
1808 .hashCode(lastFullyVisiblePositions) : 0);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DBaseObj.java126 public int hashCode() { method in class:BaseObj
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1519 public View findHierarchyView(String className, int hashCode) { argument
/frameworks/support/v4/java/android/support/v4/app/
H A DFragment.java497 * Subclasses can not override hashCode().
499 @Override final public int hashCode() { method in class:Fragment
500 return super.hashCode();
/frameworks/support/v4/java/android/support/v4/util/
H A DMapCollections.java146 public final int hashCode() { method in class:MapCollections.MapIterator
153 return (key == null ? 0 : key.hashCode()) ^
154 (value == null ? 0 : value.hashCode());
253 public int hashCode() { method in class:MapCollections.EntrySet
258 result += ( (key == null ? 0 : key.hashCode()) ^
259 (value == null ? 0 : value.hashCode()) );
343 public int hashCode() { method in class:MapCollections.KeySet
347 result += obj == null ? 0 : obj.hashCode();
H A DPair.java66 public int hashCode() { method in class:Pair
67 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
H A DSimpleArrayMap.java283 return key == null ? indexOfNull() : indexOf(key, key.hashCode());
380 hash = key.hashCode();
568 public int hashCode() { method in class:SimpleArrayMap
574 result += hashes[i] ^ (value == null ? 0 : value.hashCode());
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java2536 public int hashCode() { method in class:AccessibilityNodeInfoCompat
2537 return (mInfo == null) ? 0 : mInfo.hashCode();
H A DAccessibilityRecordCompat.java1018 public int hashCode() { method in class:AccessibilityRecordCompat
1019 return (mRecord == null) ? 0 : mRecord.hashCode();
/frameworks/opt/telephony/src/java/android/telephony/
H A DSmsCbLocation.java102 public int hashCode() { method in class:SmsCbLocation
103 int hash = mPlmn.hashCode();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIntRangeManager.java171 public int hashCode() { method in class:IntRangeManager.ClientRange
172 return (mStartId * 31 + mEndId) * 31 + mClient.hashCode();
H A DSmsBroadcastUndelivered.java207 public int hashCode() { method in class:SmsBroadcastUndelivered.SmsReferenceKey
208 return ((mReferenceNumber * 31) + mMessageCount) * 31 + mAddress.hashCode();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmCellBroadcastHandler.java212 public int hashCode() { method in class:GsmCellBroadcastHandler.SmsCbConcatInfo
213 return (mHeader.getSerialNumber() * 31) + mLocation.hashCode();
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java240 public int hashCode() { method in class:VCardEntry.NameData
246 hash = hash * 31 + (hashTarget != null ? hashTarget.hashCode() : 0);
359 public int hashCode() { method in class:VCardEntry.PhoneData
361 hash = hash * 31 + (mNumber != null ? mNumber.hashCode() : 0);
362 hash = hash * 31 + (mLabel != null ? mLabel.hashCode() : 0);
449 public int hashCode() { method in class:VCardEntry.EmailData
451 hash = hash * 31 + (mAddress != null ? mAddress.hashCode() : 0);
452 hash = hash * 31 + (mLabel != null ? mLabel.hashCode() : 0);
663 public int hashCode() { method in class:VCardEntry.PostalData
665 hash = hash * 31 + (mLabel != null ? mLabel.hashCode()
824 public int hashCode() { method in class:VCardEntry.OrganizationData
927 public int hashCode() { method in class:VCardEntry.ImData
1024 public int hashCode() { method in class:VCardEntry.PhotoData
1100 public int hashCode() { method in class:VCardEntry.NicknameData
1155 public int hashCode() { method in class:VCardEntry.NoteData
1213 public int hashCode() { method in class:VCardEntry.WebsiteData
1269 public int hashCode() { method in class:VCardEntry.BirthdayData
1325 public int hashCode() { method in class:VCardEntry.AnniversaryData
1403 public int hashCode() { method in class:VCardEntry.SipData
1514 public int hashCode() { method in class:VCardEntry.AndroidCustomData
[all...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DPropertyNode.java114 public int hashCode() { method in class:PropertyNode
116 // library which utilize hashCode() does not honor that, so intentionally throw an
119 "PropertyNode does not provide hashCode() implementation intentionally.");
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java497 @Override public int hashCode() { method in class:EventRecurrence
498 // We overrode equals, so we must override hashCode(). Nobody seems to need this though.
/frameworks/native/opengl/tools/glgen/src/
H A DCType.java104 public int hashCode() { method in class:CType
105 return baseType.hashCode() ^ (isPointer ? 2 : 0) ^ (isConst ? 1 : 0);
/frameworks/native/opengl/tools/glgen/static/egl/
H A DEGLObjectHandle.java61 public int hashCode() { method in class:EGLObjectHandle
/frameworks/opt/bitmap/sample/src/com/example/bitmapsample/
H A DBitmapRequestKeyImpl.java54 public int hashCode() { method in class:BitmapRequestKeyImpl
56 hash += 31 * hash + mUriString.hashCode();

Completed in 2151 milliseconds

1234567891011