Searched refs:compareTo (Results 26 - 50 of 77) sorted by relevance

1234

/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotation.java99 public int compareTo(Annotation other) { method in class:Annotation
100 int result = type.compareTo(other.type);
106 result = visibility.compareTo(other.visibility);
119 result = thisOne.compareTo(otherOne);
H A DAnnotations.java109 public int compareTo(Annotations other) { method in class:Annotations
117 int result = thisOne.compareTo(otherOne);
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstAnnotation.java62 return annotation.compareTo(((CstAnnotation) other).annotation);
H A DCstFieldRef.java77 return thisDescriptor.compareTo(otherDescriptor);
H A DCstString.java70 return string.compareTo(((CstString) other).string);
H A DCstBaseMethodRef.java97 return prototype.compareTo(otherMethod.prototype);
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotation.java90 public int compareTo(Annotation other) { method in class:Annotation
91 int result = type.compareTo(other.type);
97 result = visibility.compareTo(other.visibility);
110 result = thisOne.compareTo(otherOne);
H A DAnnotations.java108 public int compareTo(Annotations other) { method in class:Annotations
116 int result = thisOne.compareTo(otherOne);
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstAnnotation.java62 return annotation.compareTo(((CstAnnotation) other).annotation);
H A DCstFieldRef.java77 return thisDescriptor.compareTo(otherDescriptor);
H A DCstBaseMethodRef.java97 return prototype.compareTo(otherMethod.prototype);
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DFieldAnnotationStruct.java71 public int compareTo(FieldAnnotationStruct other) { method in class:FieldAnnotationStruct
72 return field.compareTo(other.field);
H A DMethodAnnotationStruct.java71 public int compareTo(MethodAnnotationStruct other) { method in class:MethodAnnotationStruct
72 return method.compareTo(other.method);
H A DEncodedMethod.java78 return compareTo((EncodedMethod) other) == 0;
89 public int compareTo(EncodedMethod other) { method in class:EncodedMethod
90 return method.compareTo(other.method);
H A DOffsettedItem.java114 public final int compareTo(OffsettedItem other) { method in class:OffsettedItem
123 return thisType.compareTo(otherType);
H A DParameterAnnotationStruct.java95 public int compareTo(ParameterAnnotationStruct other) { method in class:ParameterAnnotationStruct
96 return method.compareTo(other.method);
H A DStringDataItem.java97 return value.compareTo(otherData.value);
/dalvik/dx/src/com/android/dx/dex/file/
H A DFieldAnnotationStruct.java71 public int compareTo(FieldAnnotationStruct other) { method in class:FieldAnnotationStruct
72 return field.compareTo(other.field);
H A DMethodAnnotationStruct.java71 public int compareTo(MethodAnnotationStruct other) { method in class:MethodAnnotationStruct
72 return method.compareTo(other.method);
H A DEncodedMethod.java77 return compareTo((EncodedMethod) other) == 0;
88 public int compareTo(EncodedMethod other) { method in class:EncodedMethod
89 return method.compareTo(other.method);
H A DOffsettedItem.java114 public final int compareTo(OffsettedItem other) { method in class:OffsettedItem
123 return thisType.compareTo(otherType);
H A DParameterAnnotationStruct.java94 public int compareTo(ParameterAnnotationStruct other) { method in class:ParameterAnnotationStruct
95 return method.compareTo(other.method);
H A DEncodedArrayItem.java76 return array.compareTo(otherArray.array);
H A DStringDataItem.java97 return value.compareTo(otherData.value);
/dalvik/hit/src/com/android/hit/
H A DClassObj.java230 public final int compareTo(ClassObj o) { method in class:ClassObj
231 return mClassName.compareTo(o.mClassName);
239 return 0 == compareTo((ClassObj) o);

Completed in 427 milliseconds

1234