Searched defs:hashCode (Results 151 - 175 of 181) sorted by relevance

12345678

/frameworks/base/core/java/android/hardware/camera2/
H A DCameraMetadata.java154 public final int hashCode() { method in class:CameraMetadata.Key
155 return mName.hashCode();
/frameworks/base/core/java/android/net/
H A DUri.java340 public int hashCode() { method in class:Uri
341 return toString().hashCode();
/frameworks/base/core/java/android/text/
H A DSpannableStringBuilder.java1325 public int hashCode() { method in class:SpannableStringBuilder
1326 int hash = toString().hashCode();
1331 hash = hash * 31 + span.hashCode();
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java418 public int hashCode() { method in class:SurfaceControl.PhysicalDisplayInfo
H A DViewDebug.java288 * @param hashCode The hashCode of the view to find
291 public View findHierarchyView(String className, int hashCode); argument
441 final int hashCode = (int) Long.parseLong(ids[1], 16);
445 return findView((ViewGroup) view, className, hashCode);
807 private static View findView(ViewGroup group, String className, int hashCode) { argument
808 if (isRequestedView(group, className, hashCode)) {
816 final View found = findView((ViewGroup) view, className, hashCode);
820 } else if (isRequestedView(view, className, hashCode)) {
825 className, hashCode);
841 isRequestedView(View view, String className, int hashCode) argument
[all...]
H A DMotionEvent.java3538 public int hashCode() { method in class:MotionEvent.PointerProperties
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java278 public int hashCode() { method in class:Matrix
/frameworks/base/telephony/java/android/telephony/
H A DServiceState.java428 public int hashCode() { method in class:ServiceState
433 + ((null == mOperatorAlphaLong) ? 0 : mOperatorAlphaLong.hashCode())
434 + ((null == mOperatorAlphaShort) ? 0 : mOperatorAlphaShort.hashCode())
435 + ((null == mOperatorNumeric) ? 0 : mOperatorNumeric.hashCode())
/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/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java1947 public int hashCode() { method in class:AccessibilityNodeInfoCompat
1948 return (mInfo == null) ? 0 : mInfo.hashCode();
/frameworks/base/core/java/android/app/
H A DApplicationPackageManager.java943 public int hashCode() { method in class:ApplicationPackageManager.ResourceName
945 result = packageName.hashCode();
H A DFragment.java645 * Subclasses can not override hashCode().
647 @Override final public int hashCode() { method in class:Fragment
648 return super.hashCode();
/frameworks/base/core/java/android/os/
H A DStrictMode.java1292 Integer crashFingerprint = info.hashCode();
1617 final Integer fingerprint = info.hashCode();
2120 public int hashCode() { method in class:StrictMode.ViolationInfo
2122 result = 37 * result + crashInfo.stackTrace.hashCode();
2127 result = 37 * result + broadcastIntentAction.hashCode();
2131 result = 37 * result + tag.hashCode();
/frameworks/base/core/java/android/print/
H A DPrintAttributes.java183 public int hashCode() { method in class:PrintAttributes
187 result = prime * result + ((mMinMargins == null) ? 0 : mMinMargins.hashCode());
188 result = prime * result + ((mMediaSize == null) ? 0 : mMediaSize.hashCode());
189 result = prime * result + ((mResolution == null) ? 0 : mResolution.hashCode());
832 public int hashCode() { method in class:PrintAttributes.MediaSize
992 public int hashCode() { method in class:PrintAttributes.Resolution
1114 public int hashCode() { method in class:PrintAttributes.Margins
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java246 public View findHierarchyView(String className, int hashCode); argument
H A DWebView.java1863 public View findHierarchyView(String className, int hashCode) { argument
1864 return mProvider.findHierarchyView(className, hashCode);
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java173 public int hashCode() { method in class:RemoteViews.MutablePair
174 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second.hashCode());
H A DRemoteViewsAdapter.java820 public int hashCode() { method in class:RemoteViewsAdapter.RemoteViewsCacheKey
821 return (filter == null ? 0 : filter.hashCode()) ^ (widgetId << 2) ^ (userId << 10);
H A DGridLayout.java974 result = 31 * result + lp.hashCode();
2078 public int hashCode() { method in class:GridLayout.LayoutParams
2079 int result = rowSpec.hashCode();
2080 result = 31 * result + columnSpec.hashCode();
2363 public int hashCode() { method in class:GridLayout.Interval
2459 public int hashCode() { method in class:GridLayout.Spec
2460 int result = span.hashCode();
2461 result = 31 * result + alignment.hashCode();
/frameworks/base/media/java/android/media/
H A DWebVttRenderer.java547 public int hashCode() { method in class:TextTrackCue
548 return toString().hashCode();
/frameworks/base/services/java/com/android/server/
H A DLocationManagerService.java531 public int hashCode() { method in class:LocationManagerService.Receiver
532 return mKey.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/support/v4/java/android/support/v4/app/
H A DFragment.java479 * Subclasses can not override hashCode().
481 @Override final public int hashCode() { method in class:Fragment
482 return super.hashCode();
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2465 public int hashCode() { method in class:AccessibilityNodeInfo
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java875 result = 31 * result + lp.hashCode();
1961 public int hashCode() { method in class:GridLayout.LayoutParams
1962 int result = rowSpec.hashCode();
1963 result = 31 * result + columnSpec.hashCode();
2246 public int hashCode() { method in class:GridLayout.Interval
2342 public int hashCode() { method in class:GridLayout.Spec
2343 int result = span.hashCode();
2344 result = 31 * result + alignment.hashCode();

Completed in 9311 milliseconds

12345678