Searched refs:hashCode (Results 26 - 50 of 85) sorted by relevance

1234

/dalvik/dx/src/com/android/dx/dex/file/
H A DEncodedArrayItem.java67 public int hashCode() { method in class:EncodedArrayItem
68 return array.hashCode();
H A DStringIdItem.java62 public int hashCode() { method in class:StringIdItem
63 return value.hashCode();
H A DFieldAnnotationStruct.java57 public int hashCode() { method in class:FieldAnnotationStruct
58 return field.hashCode();
H A DMethodAnnotationStruct.java57 public int hashCode() { method in class:MethodAnnotationStruct
58 return method.hashCode();
H A DAnnotationSetItem.java90 public int hashCode() { method in class:AnnotationSetItem
91 return annotations.hashCode();
H A DEncodedField.java58 public int hashCode() { method in class:EncodedField
59 return field.hashCode();
/dalvik/dx/src/com/android/dx/rop/code/
H A DSourcePosition.java113 public int hashCode() { method in class:SourcePosition
114 return sourceFile.hashCode() + address + line;
/dalvik/vm/
H A DUtfString.cpp30 * returned value will have all its fields except hashCode already
70 /* Leave offset and hashCode set to zero. */
208 int hashCode = dvmGetFieldInt(strObj, STRING_FIELDOFF_HASHCODE); local
209 if (hashCode != 0) {
210 return hashCode;
216 hashCode = computeUtf16Hash((u2*)(void*)chars->contents + offset, len);
217 dvmSetFieldInt(strObj, STRING_FIELDOFF_HASHCODE, hashCode);
218 return hashCode;
251 u4 hashCode = computeUtf16Hash((u2*)(void*)chars->contents, utf16Length); local
252 dvmSetFieldInt((Object*) newObj, STRING_FIELDOFF_HASHCODE, hashCode);
273 u4 hashCode = computeUtf16Hash((u2*)(void*)chars->contents, len); local
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotation.java91 public int hashCode() { method in class:Annotation
92 int hash = type.hashCode();
93 hash = (hash * 31) + elements.hashCode();
94 hash = (hash * 31) + visibility.hashCode();
H A DAnnotations.java92 public int hashCode() { method in class:Annotations
93 return annotations.hashCode();
/dalvik/dx/src/com/android/dx/cf/code/
H A DReturnAddress.java96 public int hashCode() { method in class:ReturnAddress
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotation.java83 public int hashCode() { method in class:Annotation
84 int hash = type.hashCode();
85 hash = (hash * 31) + elements.hashCode();
86 hash = (hash * 31) + visibility.hashCode();
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchTable.java132 public int hashCode() { method in class:CatchTable.Entry
134 hash = (hash * 31) + handlers.hashCode();
H A DCatchHandlerList.java195 public int hashCode() { method in class:CatchHandlerList.Entry
196 return (handler * 31) + exceptionType.hashCode();
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DEncodedArrayItem.java76 public int hashCode() { method in class:EncodedArrayItem
77 return array.hashCode();
H A DFieldAnnotationStruct.java57 public int hashCode() { method in class:FieldAnnotationStruct
58 return field.hashCode();
H A DMethodAnnotationStruct.java57 public int hashCode() { method in class:MethodAnnotationStruct
58 return method.hashCode();
H A DAnnotationSetItem.java90 public int hashCode() { method in class:AnnotationSetItem
91 return annotations.hashCode();
H A DEncodedField.java58 public int hashCode() { method in class:EncodedField
59 return field.hashCode();
H A DParameterAnnotationStruct.java81 public int hashCode() { method in class:ParameterAnnotationStruct
82 return method.hashCode();
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstArray.java57 public int hashCode() { method in class:CstArray
58 return list.hashCode();
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchTable.java132 public int hashCode() { method in class:CatchTable.Entry
134 hash = (hash * 31) + handlers.hashCode();
H A DCatchHandlerList.java195 public int hashCode() { method in class:CatchHandlerList.Entry
196 return (handler * 31) + exceptionType.hashCode();
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstArray.java56 public int hashCode() { method in class:CstArray
57 return list.hashCode();
/dalvik/dexgen/src/com/android/dexgen/util/
H A DFixedSizeList.java64 public int hashCode() { method in class:FixedSizeList
65 return Arrays.hashCode(arr);

Completed in 465 milliseconds

1234