Searched refs:hashCode (Results 51 - 75 of 85) sorted by relevance

1234

/dalvik/dx/src/com/android/dx/dex/file/
H A DParameterAnnotationStruct.java81 public int hashCode() { method in class:ParameterAnnotationStruct
82 return method.hashCode();
H A DAnnotationItem.java124 public int hashCode() { method in class:AnnotationItem
125 return annotation.hashCode();
H A DTypeListItem.java55 public int hashCode() { method in class:TypeListItem
H A DAnnotationsDirectoryItem.java103 public int hashCode() { method in class:AnnotationsDirectoryItem
108 return classAnnotations.hashCode();
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotations.java92 public int hashCode() { method in class:Annotations
93 return annotations.hashCode();
/dalvik/dx/src/com/android/dx/util/
H A DFixedSizeList.java64 public int hashCode() { method in class:FixedSizeList
65 return Arrays.hashCode(arr);
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRop.java238 public int hashCode() { method in class:Rop
240 h = (h * 31) + result.hashCode();
241 h = (h * 31) + sources.hashCode();
242 h = (h * 31) + exceptions.hashCode();
H A DRegisterSpec.java260 public int hashCode() { method in class:RegisterSpec
265 * Helper for {@link #hashCode} and {@link #ForComparison.hashCode},
274 int hash = (local != null) ? local.hashCode() : 0;
276 hash = (hash * 31 + type.hashCode()) * 31 + reg;
646 public int hashCode() { method in class:RegisterSpec.ForComparison
H A DBasicBlock.java133 public int hashCode() { method in class:BasicBlock
H A DRegisterSpecSet.java87 public int hashCode() { method in class:RegisterSpecSet
93 int oneHash = (spec == null) ? 0 : spec.hashCode();
/dalvik/dx/src/com/android/dx/rop/code/
H A DRop.java238 public int hashCode() { method in class:Rop
240 h = (h * 31) + result.hashCode();
241 h = (h * 31) + sources.hashCode();
242 h = (h * 31) + exceptions.hashCode();
H A DRegisterSpec.java265 public int hashCode() { method in class:RegisterSpec
270 * Helper for {@link #hashCode} and {@link #ForComparison.hashCode},
279 int hash = (local != null) ? local.hashCode() : 0;
281 hash = (hash * 31 + type.hashCode()) * 31 + reg;
653 public int hashCode() { method in class:RegisterSpec.ForComparison
H A DBasicBlock.java133 public int hashCode() { method in class:BasicBlock
H A DRegisterSpecSet.java86 public int hashCode() { method in class:RegisterSpecSet
92 int oneHash = (spec == null) ? 0 : spec.hashCode();
/dalvik/dx/tests/078-dex-local-variable-table/
H A DBlort.java20 x.hashCode();
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DAnnotationItem.java126 public int hashCode() { method in class:AnnotationItem
127 return annotation.hashCode();
H A DTypeListItem.java55 public int hashCode() { method in class:TypeListItem
H A DAnnotationsDirectoryItem.java103 public int hashCode() { method in class:AnnotationsDirectoryItem
108 return classAnnotations.hashCode();
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstType.java178 public int hashCode() { method in class:CstType
179 return type.hashCode();
H A DCstUtf8.java215 public int hashCode() { method in class:CstUtf8
216 return string.hashCode();
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstString.java215 public int hashCode() { method in class:CstString
216 return string.hashCode();
H A DCstType.java168 public int hashCode() { method in class:CstType
169 return type.hashCode();
/dalvik/dx/tests/087-ssa-local-vars/
H A DBlort.java65 int l = inbuffer.hashCode();
/dalvik/dexgen/src/com/android/dexgen/rop/type/
H A DPrototype.java251 public int hashCode() { method in class:Prototype
252 return descriptor.hashCode();
/dalvik/dx/src/com/android/dx/rop/type/
H A DPrototype.java255 public int hashCode() { method in class:Prototype
256 return descriptor.hashCode();

Completed in 771 milliseconds

1234