Searched defs:hashCode (Results 26 - 46 of 46) sorted by relevance

12

/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java51 final int hashCode; field in class:PendingIntentRecord.Key
70 hash = (ODD_PRIME_NUMBER*hash) + _w.hashCode();
73 hash = (ODD_PRIME_NUMBER*hash) + _a.hashCode();
79 hash = (ODD_PRIME_NUMBER*hash) + _it.hashCode();
81 hash = (ODD_PRIME_NUMBER*hash) + _p.hashCode();
83 hashCode = hash;
84 //Slog.i(ActivityManagerService.TAG, this + " hashCode=0x"
85 // + Integer.toHexString(hashCode));
142 public int hashCode() { method in class:PendingIntentRecord.Key
143 return hashCode;
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DSignalStrength.java231 public int hashCode() { method in class:SignalStrength
H A DServiceState.java342 public int hashCode() { method in class:ServiceState
346 + ((null == mOperatorAlphaLong) ? 0 : mOperatorAlphaLong.hashCode())
347 + ((null == mOperatorAlphaShort) ? 0 : mOperatorAlphaShort.hashCode())
348 + ((null == mOperatorNumeric) ? 0 : mOperatorNumeric.hashCode())
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java417 public int hashCode() { method in class:GsmSMSDispatcher.SmsCbConcatInfo
/frameworks/base/services/java/com/android/server/usb/
H A DUsbDeviceSettingsManager.java173 public int hashCode() { method in class:UsbDeviceSettingsManager.AccessoryFilter
174 return ((mManufacturer == null ? 0 : mManufacturer.hashCode()) ^
175 (mModel == null ? 0 : mModel.hashCode()) ^
176 (mVersion == null ? 0 : mVersion.hashCode()));
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java128 public int hashCode() { method in class:Bridge.IntArray
129 return Arrays.hashCode(mArray);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothClass.java74 public int hashCode() { method in class:BluetoothClass
H A DBluetoothDevice.java415 public int hashCode() { method in class:BluetoothDevice
416 return mAddress.hashCode();
/frameworks/base/core/java/android/content/res/
H A DConfiguration.java656 public int hashCode() { method in class:Configuration
658 + (this.locale != null ? this.locale.hashCode() : 0)
/frameworks/base/services/java/com/android/server/
H A DWifiWatchdogService.java1189 public int hashCode() { method in class:WifiWatchdogService.AccessPoint
1191 return ssid.hashCode() + bssid.hashCode();
H A DLocationManagerService.java221 public int hashCode() { method in class:LocationManagerService.Receiver
222 return mKey.hashCode();
H A DWindowManagerService.java2162 String str = " SURFACE " + Integer.toHexString(w.hashCode())
4829 int hashCode = (int) Long.parseLong(code, 16);
4838 final WindowManagerService.WindowState window = findWindow(hashCode);
4928 private WindowState findWindow(int hashCode) { argument
4929 if (hashCode == -1) {
4939 if (System.identityHashCode(w) == hashCode) {
/frameworks/base/core/java/android/net/
H A DUri.java335 public int hashCode() { method in class:Uri
336 return toString().hashCode();
/frameworks/base/core/java/android/view/
H A DViewDebug.java603 sHierarchyTraces.write(Integer.toHexString(view.hashCode()));
738 sMotionEventTraces.write(Integer.toHexString(view.hashCode()));
885 final int hashCode = (int) Long.parseLong(ids[1], 16);
889 return findView((ViewGroup) view, className, hashCode);
1217 private static View findView(ViewGroup group, String className, int hashCode) { argument
1218 if (isRequestedView(group, className, hashCode)) {
1226 final View found = findView((ViewGroup) view, className, hashCode);
1230 } else if (isRequestedView(view, className, hashCode)) {
1238 private static boolean isRequestedView(View view, String className, int hashCode) { argument
1239 return view.getClass().getName().equals(className) && view.hashCode()
[all...]
H A DViewRoot.java3411 public int hashCode() { method in class:ViewRoot.RunQueue.HandlerAction
3412 int result = action != null ? action.hashCode() : 0;
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java206 result = 31 * result + mAccount.hashCode();
207 result = 31 * result + ((mAuthTokenType == null) ? 0 : mAuthTokenType.hashCode());
211 public int hashCode() { method in class:AccountManagerService.AuthTokenKey
/frameworks/base/core/java/android/hardware/
H A DCamera.java961 public int hashCode() { method in class:Camera.Size
/frameworks/base/core/java/android/server/
H A DBluetoothService.java168 public int hashCode() { method in class:BluetoothService.RemoteService
170 hash = hash * 31 + (address == null ? 0 : address.hashCode());
171 hash = hash * 31 + (uuid == null ? 0 : uuid.hashCode());
/frameworks/base/core/java/android/app/
H A DActivityThread.java1101 mHash = mResDir.hashCode() << 2 + (int) (mScale * 2);
1105 public int hashCode() { method in class:ActivityThread.ResourcesKey
H A DContextImpl.java2454 public int hashCode() { method in class:ContextImpl.ApplicationPackageManager.ResourceName
2456 result = packageName.hashCode();
/frameworks/base/core/java/android/content/
H A DIntent.java5071 * {@link #equals equals()} and {@link #hashCode hashCode()} methods as
5104 public int hashCode() { method in class:Intent.FilterComparison
5205 code += mAction.hashCode();
5208 code += mData.hashCode();
5211 code += mType.hashCode();
5214 code += mPackage.hashCode();
5217 code += mComponent.hashCode();
5220 code += mCategories.hashCode();

Completed in 1966 milliseconds

12