Searched defs:hashCode (Results 51 - 75 of 181) sorted by relevance

12345678

/frameworks/base/telephony/java/android/telephony/
H A DCellInfoWcdma.java68 public int hashCode() { method in class:CellInfoWcdma
69 return super.hashCode() + mCellIdentityWcdma.hashCode() + mCellSignalStrengthWcdma.hashCode();
/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java98 public int hashCode() { method in class:GsmCellLocation
/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/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/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 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.java210 public int hashCode() { method in class:GsmCellBroadcastHandler.SmsCbConcatInfo
211 return (mHeader.getSerialNumber() * 31) + mLocation.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/
H A DComponentName.java249 public int hashCode() { method in class:ComponentName
250 return mPackage.hashCode() + mClass.hashCode();
H A DContentValues.java85 public int hashCode() { method in class:ContentValues
86 return mValues.hashCode();
/frameworks/base/core/java/android/content/pm/
H A DSignature.java172 public int hashCode() { method in class:Signature
176 mHashCode = Arrays.hashCode(mSignature);
H A DVerificationParams.java172 public int hashCode() { method in class:VerificationParams
175 hash += 5 * (mVerificationURI == null ? 1 : mVerificationURI.hashCode());
176 hash += 7 * (mOriginatingURI == null ? 1 : mOriginatingURI.hashCode());
177 hash += 11 * (mReferrer == null ? 1 : mReferrer.hashCode());
179 hash += 17 * (mManifestDigest == null ? 1 : mManifestDigest.hashCode());
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplay.java156 public int hashCode() { method in class:WifiDisplay
158 return mDeviceAddress.hashCode();
/frameworks/base/core/java/android/net/
H A DNetworkPolicy.java148 public int hashCode() { method in class:NetworkPolicy
149 return Objects.hashCode(template, cycleDay, cycleTimezone, warningBytes, limitBytes,
H A DProxyProperties.java219 public int hashCode() { method in class:ProxyProperties
220 return ((null == mHost) ? 0 : mHost.hashCode())
221 + ((null == mExclusionList) ? 0 : mExclusionList.hashCode())
H A DRouteInfo.java236 public int hashCode() { method in class:RouteInfo
237 return (mDestination == null ? 0 : mDestination.hashCode() * 41)
238 + (mGateway == null ? 0 :mGateway.hashCode() * 47)
239 + (mInterface == null ? 0 :mInterface.hashCode() * 67)
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java298 public int hashCode() { method in class:DnsSdTxtRecord
299 return Arrays.hashCode(mData);
/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java208 public int hashCode() { method in class:PrintDocumentInfo
211 result = prime * result + ((mName != null) ? mName.hashCode() : 0);
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java366 public int hashCode() { method in class:PrintJob
367 return mCachedInfo.getId().hashCode();
H A DPrintServiceInfo.java236 public int hashCode() { method in class:PrintServiceInfo
237 return 31 + ((mId == null) ? 0 : mId.hashCode());
/frameworks/base/core/java/android/util/
H A DDisplayMetrics.java283 public int hashCode() { method in class:DisplayMetrics
/frameworks/base/core/java/android/view/
H A DWindowId.java175 public int hashCode() { method in class:WindowId
176 return mToken.asBinder().hashCode();
/frameworks/base/graphics/java/android/graphics/
H A DTypeface.java216 public int hashCode() { method in class:Typeface
/frameworks/base/location/java/android/location/
H A DGeofence.java147 public int hashCode() { method in class:Geofence
/frameworks/base/services/java/com/android/server/
H A DCountryDetectorService.java72 public int hashCode() { method in class:CountryDetectorService.Receiver
73 return mKey.hashCode();

Completed in 466 milliseconds

12345678