Searched defs:equals (Results 1 - 25 of 71) sorted by relevance

123

/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DNameValuePair.java68 public boolean equals(Object other) { method in class:NameValuePair
75 return name.equals(otherPair.name)
76 && value.equals(otherPair.value);
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstAnnotation.java45 public boolean equals(Object other) { method in class:CstAnnotation
50 return annotation.equals(((CstAnnotation) other).annotation);
H A DCstLiteral32.java38 public final boolean equals(Object other) { method in class:CstLiteral32
H A DCstLiteral64.java38 public final boolean equals(Object other) { method in class:CstLiteral64
H A DCstKnownNull.java38 public boolean equals(Object other) { method in class:CstKnownNull
H A DCstMemberRef.java50 public final boolean equals(Object other) { method in class:CstMemberRef
56 return definingClass.equals(otherRef.definingClass) &&
57 nat.equals(otherRef.nat);
H A DCstString.java53 public boolean equals(Object other) { method in class:CstString
58 return string.equals(((CstString) other).string);
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DNameValuePair.java62 public boolean equals(Object other) { method in class:NameValuePair
69 return name.equals(otherPair.name)
70 && value.equals(otherPair.value);
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstAnnotation.java45 public boolean equals(Object other) { method in class:CstAnnotation
50 return annotation.equals(((CstAnnotation) other).annotation);
H A DCstLiteral32.java38 public final boolean equals(Object other) { method in class:CstLiteral32
H A DCstLiteral64.java38 public final boolean equals(Object other) { method in class:CstLiteral64
H A DCstCallSite.java67 public boolean equals(Object other) { method in class:CstCallSite
69 return getList().equals(((CstCallSite) other).getList());
H A DCstKnownNull.java38 public boolean equals(Object other) { method in class:CstKnownNull
/dalvik/dx/tests/089-dex-define-object/
H A DObject.java24 public boolean equals(Object o) { method in class:Object
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DFieldAnnotationStruct.java62 public boolean equals(Object other) { method in class:FieldAnnotationStruct
67 return field.equals(((FieldAnnotationStruct) other).field);
H A DMethodAnnotationStruct.java62 public boolean equals(Object other) { method in class:MethodAnnotationStruct
67 return method.equals(((MethodAnnotationStruct) other).method);
H A DParameterAnnotationStruct.java86 public boolean equals(Object other) { method in class:ParameterAnnotationStruct
91 return method.equals(((ParameterAnnotationStruct) other).method);
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DLocalItem.java61 public boolean equals(Object other) { method in class:LocalItem
H A DSourcePosition.java97 public boolean equals(Object other) { method in class:SourcePosition
138 ((sourceFile != null) && sourceFile.equals(other.sourceFile)));
/dalvik/dx/src/com/android/dx/cf/code/
H A DReturnAddress.java86 public boolean equals(Object other) { method in class:ReturnAddress
/dalvik/dx/src/com/android/dx/dex/file/
H A DFieldAnnotationStruct.java62 public boolean equals(Object other) { method in class:FieldAnnotationStruct
67 return field.equals(((FieldAnnotationStruct) other).field);
H A DMethodAnnotationStruct.java62 public boolean equals(Object other) { method in class:MethodAnnotationStruct
67 return method.equals(((MethodAnnotationStruct) other).method);
H A DStringIdItem.java51 public boolean equals(Object other) { method in class:StringIdItem
57 return value.equals(otherString.value);
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalItem.java61 public boolean equals(Object other) { method in class:LocalItem
H A DSourcePosition.java97 public boolean equals(Object other) { method in class:SourcePosition
138 ((sourceFile != null) && sourceFile.equals(other.sourceFile)));

Completed in 455 milliseconds

123