Home
last modified time | relevance | path

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

1234

/dalvik/dx/tests/090-dex-unify-arrays/
DBlort.java30 return o.hashCode(); in test2()
35 return o.hashCode(); in test3()
40 return o.hashCode(); in test4()
45 return o.hashCode(); in test5()
50 return o.hashCode(); in test6()
Dexpected.txt24 0009: invoke-virtual {v2}, java.lang.Object.hashCode:()I
40 0009: invoke-virtual {v2}, java.lang.Object.hashCode:()I
56 0009: invoke-virtual {v2}, java.lang.Object.hashCode:()I
72 0009: invoke-virtual {v2}, java.lang.Object.hashCode:()I
88 0009: invoke-virtual {v2}, java.lang.Object.hashCode:()I
/dalvik/dx/tests/098-dex-jsr-ret-throw/
DViewDebug$ViewServer.classViewDebug.java package android.view android.view.ViewDebug$ViewServer extends java.lang. ...
/dalvik/dx/tests/088-ssa-combine-blocks/
DBlort.java31 hashCode(); in edgeSplitMoveException()
32 hashCode(); in edgeSplitMoveException()
/dalvik/dx/src/com/android/dx/rop/annotation/
DNameValuePair.java59 public int hashCode() { in hashCode() method in NameValuePair
60 return name.hashCode() * 31 + value.hashCode(); in hashCode()
DAnnotation.java83 public int hashCode() { in hashCode() method in Annotation
84 int hash = type.hashCode(); in hashCode()
85 hash = (hash * 31) + elements.hashCode(); in hashCode()
86 hash = (hash * 31) + visibility.hashCode(); in hashCode()
/dalvik/dx/src/com/android/dx/rop/cst/
DCstMemberRef.java62 public final int hashCode() { in hashCode() method in CstMemberRef
63 return (definingClass.hashCode() * 31) ^ nat.hashCode(); in hashCode()
DCstNat.java73 public int hashCode() { in hashCode() method in CstNat
74 return (name.hashCode() * 31) ^ descriptor.hashCode(); in hashCode()
DCstAnnotation.java55 public int hashCode() { in hashCode() method in CstAnnotation
56 return annotation.hashCode(); in hashCode()
DCstProtoRef.java56 public int hashCode() { in hashCode() method in CstProtoRef
57 return prototype.hashCode(); in hashCode()
DCstCallSite.java77 public int hashCode() { in hashCode() method in CstCallSite
78 return getList().hashCode(); in hashCode()
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
DNameValuePair.java63 public int hashCode() { in hashCode() method in NameValuePair
64 return name.hashCode() * 31 + value.hashCode(); in hashCode()
DAnnotation.java91 public int hashCode() { in hashCode() method in Annotation
92 int hash = type.hashCode(); in hashCode()
93 hash = (hash * 31) + elements.hashCode(); in hashCode()
94 hash = (hash * 31) + visibility.hashCode(); in hashCode()
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
DCstMemberRef.java62 public final int hashCode() { in hashCode() method in CstMemberRef
63 return (definingClass.hashCode() * 31) ^ nat.hashCode(); in hashCode()
DCstNat.java73 public int hashCode() { in hashCode() method in CstNat
74 return (name.hashCode() * 31) ^ descriptor.hashCode(); in hashCode()
DCstAnnotation.java55 public int hashCode() { in hashCode() method in CstAnnotation
56 return annotation.hashCode(); in hashCode()
DCstString.java63 public int hashCode() { in hashCode() method in CstString
64 return string.hashCode(); in hashCode()
/dalvik/dx/tests/086-ssa-edge-split/
DBlort.java49 hashCode(); in edgeSplitMoveException()
50 hashCode(); in edgeSplitMoveException()
/dalvik/dx/tests/062-dex-synch-method/
DBlort.java24 x.hashCode(); in testInstance2()
52 x.hashCode(); in testStatic2()
/dalvik/dexgen/src/com/android/dexgen/rop/code/
DLocalItem.java108 public int hashCode() { in hashCode() method in LocalItem
109 return (name == null ? 0 : name.hashCode()) * 31 in hashCode()
110 + (signature == null ? 0 : signature.hashCode()); in hashCode()
DRop.java238 public int hashCode() { in hashCode() method in Rop
240 h = (h * 31) + result.hashCode(); in hashCode()
241 h = (h * 31) + sources.hashCode(); in hashCode()
242 h = (h * 31) + exceptions.hashCode(); in hashCode()
/dalvik/dx/src/com/android/dx/rop/code/
DLocalItem.java109 public int hashCode() { in hashCode() method in LocalItem
110 return (name == null ? 0 : name.hashCode()) * 31 in hashCode()
111 + (signature == null ? 0 : signature.hashCode()); in hashCode()
DRop.java238 public int hashCode() { in hashCode() method in Rop
240 h = (h * 31) + result.hashCode(); in hashCode()
241 h = (h * 31) + sources.hashCode(); in hashCode()
242 h = (h * 31) + exceptions.hashCode(); in hashCode()
DSourcePosition.java113 public int hashCode() { in hashCode() method in SourcePosition
114 return sourceFile.hashCode() + address + line; in hashCode()
/dalvik/dx/src/com/android/dx/dex/file/
DEncodedArrayItem.java67 public int hashCode() { in hashCode() method in EncodedArrayItem
68 return array.hashCode(); in hashCode()

1234