Searched refs:hashCode (Results 51 - 75 of 334) sorted by relevance

1234567891011>>

/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/opt/bitmap/sample/src/com/example/bitmapsample/
H A DBitmapRequestKeyImpl.java54 public int hashCode() { method in class:BitmapRequestKeyImpl
56 hash += 31 * hash + mUriString.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);
/frameworks/base/core/java/android/content/pm/
H A DVerificationParams.java174 public int hashCode() { method in class:VerificationParams
177 hash += 5 * (mVerificationURI == null ? 1 : mVerificationURI.hashCode());
178 hash += 7 * (mOriginatingURI == null ? 1 : mOriginatingURI.hashCode());
179 hash += 11 * (mReferrer == null ? 1 : mReferrer.hashCode());
181 hash += 17 * (mManifestDigest == null ? 1 : mManifestDigest.hashCode());
H A DContainerEncryptionParams.java263 public int hashCode() { method in class:ContainerEncryptionParams
266 hash += 5 * mEncryptionAlgorithm.hashCode();
267 hash += 7 * Arrays.hashCode(mEncryptionSpec.getIV());
268 hash += 11 * mEncryptionKey.hashCode();
269 hash += 13 * mMacAlgorithm.hashCode();
270 hash += 17 * mMacKey.hashCode();
271 hash += 19 * Arrays.hashCode(mMacTag);
/frameworks/base/core/java/android/net/
H A DStaticIpConfiguration.java140 public int hashCode() { method in class:StaticIpConfiguration
142 result = 47 * result + (ipAddress == null ? 0 : ipAddress.hashCode());
143 result = 47 * result + (gateway == null ? 0 : gateway.hashCode());
144 result = 47 * result + (domains == null ? 0 : domains.hashCode());
145 result = 47 * result + dnsServers.hashCode();
H A DIpPrefix.java133 public int hashCode() { method in class:IpPrefix
134 return Arrays.hashCode(address) + 11 * prefixLength;
/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java251 final int hashCode;
253 hashCode = 0;
255 hashCode = subtype.hashCode();
257 sService.setCurrentSpellCheckerSubtype(null, hashCode);
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DContainerEncryptionParamsTest.java242 assertEquals(params1.hashCode(), params2.hashCode());
256 assertFalse(params1.hashCode() == params2.hashCode());
270 assertFalse(params1.hashCode() == params2.hashCode());
284 assertFalse(params1.hashCode() == params2.hashCode());
298 assertFalse(params1.hashCode() == params2.hashCode());
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DContiguousFIFOAggregator.java100 final int hash = key.hashCode();
138 mTasks.delete(key.hashCode());
167 final int hash = key.hashCode();
201 final int hash = first.hashCode();
224 final int hash = key.hashCode();
240 return mTasks.get(key.hashCode()) != null;
257 final int hash = key.hashCode();
H A DResourceRequestKey.java84 public int hashCode() { method in class:ResourceRequestKey
/frameworks/base/core/java/android/hardware/camera2/params/
H A DLensShadingMap.java236 public int hashCode() { method in class:LensShadingMap
237 int elemsHash = HashCodeHelpers.hashCode(mElements);
238 return HashCodeHelpers.hashCode(mRows, mColumns, elemsHash);
/frameworks/base/services/core/java/com/android/server/location/
H A DLocationRequestStatistics.java84 public int hashCode() { method in class:LocationRequestStatistics.PackageProviderKey
85 return packageName.hashCode() + 31 * providerName.hashCode();
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestMethod.java135 public int hashCode() { method in class:TestMethod
137 result = (enclosingClassname != null ? enclosingClassname.hashCode() : 0);
138 result = 31 * result + (testMethodName != null ? testMethodName.hashCode() : 0);
/frameworks/base/core/java/android/speech/tts/
H A DVoice.java198 public int hashCode() { method in class:Voice
201 result = prime * result + ((mFeatures == null) ? 0 : mFeatures.hashCode());
203 result = prime * result + ((mLocale == null) ? 0 : mLocale.hashCode());
204 result = prime * result + ((mName == null) ? 0 : mName.hashCode());
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DBaseCursorPagerAdapter.java96 rowId = mCursor.getString(mRowIDColumn).hashCode();
157 return mCursor.getString(mRowIDColumn).hashCode();
209 return "android:pager:" + viewId + ":" + mCursor.getString(mRowIDColumn).hashCode();
252 final int rowId = mCursor.getString(mRowIDColumn).hashCode();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthAppConfiguration.java81 public int hashCode() { method in class:BluetoothHealthAppConfiguration
83 result = 31 * result + (mName != null ? mName.hashCode() : 0);
/frameworks/base/core/java/android/hardware/camera2/marshal/
H A DMarshalRegistry.java104 this.hash = typeReference.hashCode() ^ nativeType;
123 public int hashCode() { method in class:MarshalRegistry.MarshalToken
/frameworks/base/core/java/com/android/internal/textservice/
H A DITextServicesManager.aidl40 oneway void setCurrentSpellCheckerSubtype(String locale, int 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/base/telecomm/java/android/telecom/
H A DCall.java396 public int hashCode() { method in class:Call.Details
398 Objects.hashCode(mHandle) +
399 Objects.hashCode(mHandlePresentation) +
400 Objects.hashCode(mCallerDisplayName) +
401 Objects.hashCode(mCallerDisplayNamePresentation) +
402 Objects.hashCode(mAccountHandle) +
403 Objects.hashCode(mCallCapabilities) +
404 Objects.hashCode(mCallProperties) +
405 Objects.hashCode(mDisconnectCause) +
406 Objects.hashCode(mConnectTimeMilli
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java152 * Arrays.hashCode(new Object[] {locale, mode, extraValue,
254 * Arrays.hashCode(new Object[] {locale, mode, extraValue,
277 // If hashCode() of this subtype is 0 and you want to specify it as an id of this subtype,
451 public int hashCode() { method in class:InputMethodSubtype
460 return (subtype.hashCode() == hashCode());
462 return (subtype.hashCode() == hashCode())
529 return Arrays.hashCode(new Object[] {locale, mode, extraValue, isAuxiliary,
532 return Arrays.hashCode(ne
[all...]
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java216 public int hashCode() { method in class:SoundTrigger.SoundModel
219 result = prime * result + Arrays.hashCode(data);
221 result = prime * result + ((uuid == null) ? 0 : uuid.hashCode());
222 result = prime * result + ((vendorUuid == null) ? 0 : vendorUuid.hashCode());
327 public int hashCode() { method in class:SoundTrigger.Keyphrase
330 result = prime * result + ((text == null) ? 0 : text.hashCode());
332 result = prime * result + ((locale == null) ? 0 : locale.hashCode());
334 result = prime * result + Arrays.hashCode(users);
437 public int hashCode() { method in class:SoundTrigger.KeyphraseSoundModel
439 int result = super.hashCode();
583 public int hashCode() { method in class:SoundTrigger.RecognitionEvent
769 public int hashCode() { method in class:SoundTrigger.ConfidenceLevel
861 public int hashCode() { method in class:SoundTrigger.KeyphraseRecognitionExtra
980 public int hashCode() { method in class:SoundTrigger.KeyphraseRecognitionEvent
1075 public int hashCode() { method in class:SoundTrigger.SoundModelEvent
[all...]
/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/base/core/java/android/print/
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);

Completed in 818 milliseconds

1234567891011>>