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

1234567891011>>

/frameworks/base/core/java/android/hardware/camera2/params/
H A DStreamConfigurationDuration.java142 public int hashCode() { method in class:StreamConfigurationDuration
143 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight,
H A DOutputConfiguration.java199 public int hashCode() { method in class:OutputConfiguration
200 return HashCodeHelpers.hashCode(mSurface.hashCode(), mRotation);
/frameworks/base/core/java/android/os/
H A DMessenger.java86 public int hashCode() { method in class:Messenger
87 return mTarget.asBinder().hashCode();
H A DParcelUuid.java77 public int hashCode() { method in class:ParcelUuid
78 return mUuid.hashCode();
H A DRemoteCallback.java83 public int hashCode() { method in class:RemoteCallback
84 return mTarget.asBinder().hashCode();
/frameworks/base/core/java/android/print/
H A DPrintJob.java197 public int hashCode() { method in class:PrintJob
198 return mCachedInfo.getId().hashCode();
H A DPrintJobId.java52 public int hashCode() { method in class:PrintJobId
55 result = prime * result + ((mValue != null) ? mValue.hashCode() : 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAnimatedImageView.java63 if (mDrawableId == drawable.hashCode()) return;
65 mDrawableId = drawable.hashCode();
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java76 public int hashCode() { method in class:ClassPathPackageInfo
77 return packageName.hashCode();
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pServiceInfo.java152 public int hashCode() { method in class:WifiP2pServiceInfo
154 result = 31 * result + (mQueryList == null ? 0 : mQueryList.hashCode());
/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/customtabs/src/android/support/customtabs/
H A DCustomTabsSessionToken.java71 public int hashCode() { method in class:CustomTabsSessionToken
72 return getCallbackBinder().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.java139 public int hashCode() { method in class:StaticIpConfiguration
141 result = 47 * result + (ipAddress == null ? 0 : ipAddress.hashCode());
142 result = 47 * result + (gateway == null ? 0 : gateway.hashCode());
143 result = 47 * result + (domains == null ? 0 : domains.hashCode());
144 result = 47 * result + dnsServers.hashCode();
/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/base/core/tests/coretests/src/android/net/
H A DStaticIpConfigurationTest.java104 assertTrue(hashCodes.add(s.hashCode()));
107 assertTrue(hashCodes.add(s.hashCode()));
110 assertTrue(hashCodes.add(s.hashCode()));
113 assertTrue(hashCodes.add(s.hashCode()));
116 assertTrue(hashCodes.add(s.hashCode()));
119 assertTrue(hashCodes.add(s.hashCode()));
122 assertTrue(hashCodes.add(s.hashCode()));
/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();
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DWebAsset.java100 public int hashCode() { method in class:WebAsset
101 return toJson().hashCode();
106 return toJson().hashCode();
/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());

Completed in 1934 milliseconds

1234567891011>>