Searched defs:hashCode (Results 1 - 25 of 75) sorted by relevance

123

/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DNameValuePair.java63 public int hashCode() { method in class:NameValuePair
64 return name.hashCode() * 31 + value.hashCode();
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstAnnotation.java55 public int hashCode() { method in class:CstAnnotation
56 return annotation.hashCode();
H A DCstLiteral32.java46 public final int hashCode() { method in class:CstLiteral32
H A DCstLiteral64.java46 public final int hashCode() { method in class:CstLiteral64
H A DCstKnownNull.java44 public int hashCode() { method in class:CstKnownNull
H A DCstMemberRef.java62 public final int hashCode() { method in class:CstMemberRef
63 return (definingClass.hashCode() * 31) ^ nat.hashCode();
H A DCstString.java63 public int hashCode() { method in class:CstString
64 return string.hashCode();
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DNameValuePair.java57 public int hashCode() { method in class:NameValuePair
58 return name.hashCode() * 31 + value.hashCode();
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstAnnotation.java55 public int hashCode() { method in class:CstAnnotation
56 return annotation.hashCode();
H A DCstLiteral32.java46 public final int hashCode() { method in class:CstLiteral32
H A DCstLiteral64.java46 public final int hashCode() { method in class:CstLiteral64
/dalvik/dx/tests/089-dex-define-object/
H A DObject.java33 public native int hashCode(); method in class:Object
/dalvik/dexgen/src/com/android/dexgen/dex/file/
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 DParameterAnnotationStruct.java81 public int hashCode() { method in class:ParameterAnnotationStruct
82 return method.hashCode();
H A DTypeListItem.java55 public int hashCode() { method in class:TypeListItem
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DLocalItem.java108 public int hashCode() { method in class:LocalItem
109 return (name == null ? 0 : name.hashCode()) * 31
110 + (signature == null ? 0 : signature.hashCode());
H A DSourcePosition.java113 public int hashCode() { method in class:SourcePosition
114 return sourceFile.hashCode() + address + line;
/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/dex/file/
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 DParameterAnnotationStruct.java81 public int hashCode() { method in class:ParameterAnnotationStruct
82 return method.hashCode();
H A DStringIdItem.java62 public int hashCode() { method in class:StringIdItem
63 return value.hashCode();
H A DTypeListItem.java55 public int hashCode() { method in class:TypeListItem
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalItem.java108 public int hashCode() { method in class:LocalItem
109 return (name == null ? 0 : name.hashCode()) * 31
110 + (signature == null ? 0 : signature.hashCode());

Completed in 179 milliseconds

123