Home
last modified time | relevance | path

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

12

/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/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSimpleAttributeTest.java87 int ah = a.hashCode(); in testHashCode()
89 assertFalse(ah == new Object().hashCode()); in testHashCode()
94 "value = with space ").hashCode()); in testHashCode()
98 "value").hashCode()); in testHashCode()
100 assertFalse(ah == new SimpleAttribute("uri", "name", "value = with space ").hashCode()); in testHashCode()
102 assertFalse(ah == new SimpleAttribute("uri", "wrong name", "value").hashCode()); in testHashCode()
106 "value = with space ").hashCode()); in testHashCode()
DSimpleElementTest.java310 int he = e.hashCode(); in testHashCode()
315 new Rect(0, 0, 320, 480)).hashCode()); in testHashCode()
322 new Rect(0, 0, 320, 480)).hashCode()); in testHashCode()
328 new Rect(0, 0, 320, 480)).hashCode()); in testHashCode()
334 new Rect(0, 0, 320, 480)).hashCode()); in testHashCode()
340 new Rect(10, 100, 160, 240)).hashCode()); in testHashCode()
DLayoutPointTest.java36 assertEquals(point2.hashCode(), point2b.hashCode()); in testEquals()
DControlPointTest.java65 assertEquals(point2.hashCode(), point2b.hashCode()); in testEquals()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSimpleAttribute.java113 public int hashCode() { in hashCode() method in SimpleAttribute
114 long c = mName.hashCode(); in hashCode()
116 c = 31*c + mUri.hashCode(); in hashCode()
117 c = 31*c + mValue.hashCode(); in hashCode()
DSimpleElement.java348 public int hashCode() { in hashCode() method in SimpleElement
349 long c = mFqcn.hashCode(); in hashCode()
351 c = 31*c + mAttributes.hashCode(); in hashCode()
352 c = 31*c + mElements.hashCode(); in hashCode()
354 c = 31*c + mParentFqcn.hashCode(); in hashCode()
357 c = 31*c + mBounds.hashCode(); in hashCode()
360 c = 31*c + mParentBounds.hashCode(); in hashCode()
DLayoutPoint.java133 public int hashCode() { in hashCode() method in LayoutPoint
DControlPoint.java160 public int hashCode() { in hashCode() method in ControlPoint
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/api/
DPointTest.java113 assertEquals(p1.hashCode(), p.hashCode()); in testHashCode()
115 assertFalse(p2.hashCode() == p.hashCode()); in testHashCode()
DRectTest.java282 assertFalse(r1.hashCode() == r.hashCode()); in testHashCode()
283 assertEquals(r2.hashCode(), r1.hashCode()); in testHashCode()
/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()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
DAndroidTestReference.java62 public int hashCode() { in hashCode() method in AndroidTestReference
63 return getName().hashCode(); in hashCode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
DXmlStorageEditorInput.java116 public int hashCode() { in hashCode() method in XmlStorageEditorInput
117 return mStorage.hashCode(); in hashCode()
DFileStorage.java117 public int hashCode() { in hashCode() method in FileStorage
118 return mFile.hashCode(); in hashCode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
DIFileWrapper.java141 public int hashCode() {
142 return mFile.hashCode();
DIFolderWrapper.java145 public int hashCode() { in hashCode() method in IFolderWrapper
146 return mContainer.hashCode(); in hashCode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
DLocale.java158 public int hashCode() { in hashCode() method in Locale
161 result = prime * result + qualifier.hashCode(); in hashCode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DApkInstallManager.java73 public int hashCode() { in hashCode() method in ApkInstallManager.ApkInstall
74 return (device.getSerialNumber() + project.getName() + packageName).hashCode(); in hashCode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
DProjectState.java156 public int hashCode() { in hashCode() method in ProjectState.LibraryState
157 return normalizePath(mRelativePath).hashCode(); in hashCode()
732 public int hashCode() { in hashCode() method in ProjectState
733 return mProject.hashCode(); in hashCode()
DWidgetClassLoader.java118 public int hashCode() { in hashCode() method in WidgetClassLoader.ClassDescriptor
119 return mFqcn.hashCode(); in hashCode()
DAndroidJarLoader.java91 public int hashCode() { in hashCode() method in AndroidJarLoader.ClassWrapper
92 return mClass.hashCode(); in hashCode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
DXmlPropertyComposite.java56 public int hashCode() { in hashCode() method in XmlPropertyComposite
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/
DResourceHelperTest.java81 public int hashCode() { in hashCode() method in ResourceHelperTest.FakeQualifierClass
/sdk/testapps/gridlayoutTest/v7-gridlayout/libs/
Dandroid-support-v7-gridlayout.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/ ...

12