Home
last modified time | relevance | path

Searched refs:hashCode (Results 1 – 2 of 2) sorted by relevance

/sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
DWindow.java23 private int hashCode; field in Window
25 public Window(String title, int hashCode) { in Window() argument
27 this.hashCode = hashCode; in Window()
35 return hashCode; in getHashCode()
39 return Integer.toHexString(hashCode); in encode()
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
DViewNode.java159 public int hashCode() { in hashCode() method in ViewNode
161 hash = 67 * hash + (this.name != null ? this.name.hashCode() : 0); in hashCode()
191 public int hashCode() { in hashCode() method in ViewNode.Property
193 hash = 61 * hash + (this.name != null ? this.name.hashCode() : 0); in hashCode()
194 hash = 61 * hash + (this.value != null ? this.value.hashCode() : 0); in hashCode()