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

123

/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.java206 public int hashCode() { method in class:LocationManagerService.Receiver
207 return mKey.hashCode();
H A DWindowManagerService.java2234 String str = " SURFACE " + Integer.toHexString(w.hashCode())
4816 int hashCode = (int) Long.parseLong(code, 16);
4825 final WindowManagerService.WindowState window = findWindow(hashCode);
4860 private WindowState findWindow(int hashCode) { argument
4861 if (hashCode == -1) {
4871 if (System.identityHashCode(w) == hashCode) {
/frameworks/base/telephony/java/android/telephony/
H A DServiceState.java337 public int hashCode() { method in class:ServiceState
341 + ((null == mOperatorAlphaLong) ? 0 : mOperatorAlphaLong.hashCode())
342 + ((null == mOperatorAlphaShort) ? 0 : mOperatorAlphaShort.hashCode())
343 + ((null == mOperatorNumeric) ? 0 : mOperatorNumeric.hashCode())
/frameworks/base/awt/java/awt/
H A DBasicStroke.java389 public int hashCode() { method in class:BasicStroke
401 return hash.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.java595 sHierarchyTraces.write(Integer.toHexString(view.hashCode()));
730 sMotionEventTraces.write(Integer.toHexString(view.hashCode()));
877 final int hashCode = (int) Long.parseLong(ids[1], 16);
881 return findView((ViewGroup) view, className, hashCode);
1175 private static View findView(ViewGroup group, String className, int hashCode) { argument
1176 if (isRequestedView(group, className, hashCode)) {
1184 final View found = findView((ViewGroup) view, className, hashCode);
1188 } else if (isRequestedView(view, className, hashCode)) {
1196 private static boolean isRequestedView(View view, String className, int hashCode) { argument
1197 return view.getClass().getName().equals(className) && view.hashCode()
[all...]
H A DViewRoot.java3335 public int hashCode() { method in class:ViewRoot.RunQueue.HandlerAction
3336 int result = action != null ? action.hashCode() : 0;
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java205 result = 31 * result + mAccount.hashCode();
206 result = 31 * result + ((mAuthTokenType == null) ? 0 : mAuthTokenType.hashCode());
210 public int hashCode() { method in class:AccountManagerService.AuthTokenKey
/frameworks/base/core/java/android/server/
H A DBluetoothService.java145 public int hashCode() { method in class:BluetoothService.RemoteService
147 hash = hash * 31 + (address == null ? 0 : address.hashCode());
148 hash = hash * 31 + (uuid == null ? 0 : uuid.hashCode());
/frameworks/base/core/java/android/content/
H A DIntent.java5047 * {@link #equals equals()} and {@link #hashCode hashCode()} methods as
5080 public int hashCode() { method in class:Intent.FilterComparison
5181 code += mAction.hashCode();
5184 code += mData.hashCode();
5187 code += mType.hashCode();
5190 code += mPackage.hashCode();
5193 code += mComponent.hashCode();
5196 code += mCategories.hashCode();
/frameworks/base/core/java/android/hardware/
H A DCamera.java690 public int hashCode() { method in class:Camera.Size
/frameworks/base/core/java/android/app/
H A DContextImpl.java2335 public int hashCode() { method in class:ContextImpl.ApplicationPackageManager.ResourceName
2337 result = packageName.hashCode();
H A DActivityThread.java2200 mHash = mResDir.hashCode() << 2 + (int) (mScale * 2);
2204 public int hashCode() { method in class:ActivityThread.ResourcesKey

Completed in 974 milliseconds

123