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

12345678

/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1422 public View findHierarchyView(String className, int hashCode) { argument
/frameworks/base/core/java/android/content/
H A DIntent.java6553 * {@link #equals equals()} and {@link #hashCode hashCode()} methods as
6586 public int hashCode() { method in class:Intent.FilterComparison
6687 code += mAction.hashCode();
6690 code += mData.hashCode();
6693 code += mType.hashCode();
6696 code += mPackage.hashCode();
6699 code += mComponent.hashCode();
6702 code += mCategories.hashCode();
/frameworks/base/core/java/android/hardware/
H A DCamera.java1709 public int hashCode() { method in class:Camera.Size
/frameworks/base/core/java/android/app/
H A DActivityThread.java230 public int hashCode() { method in class:ActivityThread.ProviderKey
231 return ((authority != null) ? authority.hashCode() : 0) ^ userId;
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java6475 public int hashCode() { method in class:ViewRootImpl.RunQueue.HandlerAction
6476 int result = action != null ? action.hashCode() : 0;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java6356 int hashCode = (int) Long.parseLong(code, 16);
6365 final WindowState window = findWindow(hashCode);
6455 private WindowState findWindow(int hashCode) { argument
6456 if (hashCode == -1) {
6468 if (System.identityHashCode(w) == hashCode) {

Completed in 244 milliseconds

12345678