Searched defs:hashCode (Results 101 - 125 of 181) sorted by relevance

12345678

/frameworks/base/core/java/android/os/
H A DUserHandle.java243 public int hashCode() { method in class:UserHandle
H A DWorkSource.java136 public int hashCode() { method in class:WorkSource
143 result = ((result << 4) | (result >>> 28)) ^ mNames[i].hashCode();
/frameworks/base/core/java/android/print/
H A DPrinterCapabilitiesInfo.java211 public int hashCode() { method in class:PrinterCapabilitiesInfo
214 result = prime * result + ((mMinMargins == null) ? 0 : mMinMargins.hashCode());
215 result = prime * result + ((mMediaSizes == null) ? 0 : mMediaSizes.hashCode());
216 result = prime * result + ((mResolutions == null) ? 0 : mResolutions.hashCode());
218 result = prime * result + Arrays.hashCode(mDefaults);
H A DPrinterInfo.java154 public int hashCode() { method in class:PrinterInfo
157 result = prime * result + ((mId != null) ? mId.hashCode() : 0);
158 result = prime * result + ((mName != null) ? mName.hashCode() : 0);
160 result = prime * result + ((mDescription != null) ? mDescription.hashCode() : 0);
161 result = prime * result + ((mCapabilities != null) ? mCapabilities.hashCode() : 0);
/frameworks/base/core/java/android/text/
H A DSpannableStringInternal.java395 public int hashCode() { method in class:SpannableStringInternal
396 int hash = toString().hashCode();
401 hash = hash * 31 + span.hashCode();
/frameworks/base/core/java/android/text/style/
H A DSuggestionSpan.java226 * the original string, the suggested replacement string as well as the hashCode of this span.
273 return ((SuggestionSpan)o).hashCode() == mHashCode;
279 public int hashCode() { method in class:SuggestionSpan
285 return Arrays.hashCode(new Object[] {Long.valueOf(SystemClock.uptimeMillis()), suggestions,
368 intent.putExtra(SuggestionSpan.SUGGESTION_SPAN_PICKED_HASHCODE, hashCode());
/frameworks/base/core/java/android/util/
H A DArrayMap.java324 return key == null ? (indexOfNull() >= 0) : (indexOf(key, key.hashCode()) >= 0);
366 final int index = key == null ? indexOfNull() : indexOf(key, key.hashCode());
425 hash = key.hashCode();
476 final int hash = key == null ? 0 : key.hashCode();
524 int index = key == null ? indexOfNull() : indexOf(key, key.hashCode());
642 public int hashCode() { method in class:ArrayMap
648 result += hashes[i] ^ (value == null ? 0 : value.hashCode());
710 return key == null ? indexOfNull() : indexOf(key, key.hashCode());
H A DArraySet.java292 return key == null ? (indexOfNull() >= 0) : (indexOf(key, key.hashCode()) >= 0);
329 hash = value.hashCode();
397 int index = object == null ? indexOfNull() : indexOf(object, object.hashCode());
528 public int hashCode() { method in class:ArraySet
587 return key == null ? indexOfNull() : indexOf(key, key.hashCode());
592 return value == null ? indexOfNull() : indexOf(value, value.hashCode());
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java256 public int hashCode() { method in class:DisplayInfo
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodInfo.java203 .InputMethod_Subtype_subtypeId, 0 /* use Arrays.hashCode */))
449 public int hashCode() { method in class:InputMethodInfo
450 return mId.hashCode();
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSubtype.java133 public int hashCode() { method in class:SpellCheckerSubtype
141 return (subtype.hashCode() == hashCode())
220 return Arrays.hashCode(new Object[] {locale, extraValue});
/frameworks/base/graphics/java/android/graphics/
H A DRect.java92 public int hashCode() { method in class:Rect
H A DRectF.java100 public int hashCode() { method in class:RectF
/frameworks/base/media/java/android/media/videoeditor/
H A DTransition.java486 public int hashCode() { method in class:Transition
487 return mUniqueId.hashCode();
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DRootInfo.java225 public int hashCode() { method in class:RootInfo
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DUploadedTexture.java91 public int hashCode() { method in class:UploadedTexture.BorderKey
92 int x = config.hashCode() ^ length;
/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java56 final int hashCode; field in class:PendingIntentRecord.Key
81 hash = (ODD_PRIME_NUMBER*hash) + _w.hashCode();
84 hash = (ODD_PRIME_NUMBER*hash) + _a.hashCode();
90 hash = (ODD_PRIME_NUMBER*hash) + requestResolvedType.hashCode();
92 hash = (ODD_PRIME_NUMBER*hash) + _p.hashCode();
94 hashCode = hash;
95 //Slog.i(ActivityManagerService.TAG, this + " hashCode=0x"
96 // + Integer.toHexString(hashCode));
156 public int hashCode() { method in class:PendingIntentRecord.Key
157 return hashCode;
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellSignalStrengthCdma.java290 public int hashCode() { method in class:CellSignalStrengthCdma
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestGrouping.java103 public int hashCode() { method in class:TestGrouping
104 return testCaseClasses.hashCode();
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceResponse.java330 public int hashCode() { method in class:WifiP2pServiceResponse
336 0 : mDevice.deviceAddress.hashCode());
337 result = 31 * result + (mData == null ? 0 : mData.hashCode());
/frameworks/support/v4/java/android/support/v4/util/
H A DSimpleArrayMap.java273 return key == null ? (indexOfNull() >= 0) : (indexOf(key, key.hashCode()) >= 0);
313 final int index = key == null ? indexOfNull() : indexOf(key, key.hashCode());
370 hash = key.hashCode();
441 int index = key == null ? indexOfNull() : indexOf(key, key.hashCode());
558 public int hashCode() { method in class:SimpleArrayMap
564 result += hashes[i] ^ (value == null ? 0 : value.hashCode());
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java667 public int hashCode() { method in class:AccessibilityServiceInfo
668 return 31 * 1 + ((mId == null) ? 0 : mId.hashCode());
/frameworks/base/core/java/android/app/
H A DPendingIntent.java880 public int hashCode() { method in class:PendingIntent
881 return mTarget.asBinder().hashCode();
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java560 public int hashCode() { method in class:CompatibilityInfo
/frameworks/base/core/java/android/hardware/camera2/
H A DCaptureRequest.java145 public int hashCode() { method in class:CaptureRequest
146 return mSettings.hashCode();

Completed in 2700 milliseconds

12345678