Searched defs:compareTo (Results 1 - 25 of 49) sorted by relevance

12

/dalvik/tests/069-field-type/src2/
H A DBlah.java6 public int compareTo(Object another) { method in class:Blah
7 System.out.println("In compareTo");
/dalvik/dx/src/com/android/dx/util/
H A DUint.java29 public int compareTo(Uint uint) { method in class:Uint
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DNameValuePair.java85 public int compareTo(NameValuePair other) { method in class:NameValuePair
86 int result = name.compareTo(other.name);
92 return value.compareTo(other.value);
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DConstant.java48 public final int compareTo(Constant other) { method in class:Constant
53 return clazz.getName().compareTo(otherClazz.getName());
/dalvik/dx/src/com/android/dx/io/
H A DEncodedValue.java44 @Override public int compareTo(EncodedValue other) { method in class:EncodedValue
H A DAnnotation.java66 @Override public int compareTo(Annotation other) { method in class:Annotation
75 int compare = values[i].compareTo(other.values[i]);
H A DFieldId.java46 public int compareTo(FieldId other) { method in class:FieldId
H A DMethodId.java46 public int compareTo(MethodId other) { method in class:MethodId
H A DProtoId.java34 public int compareTo(ProtoId other) { method in class:ProtoId
/dalvik/dx/src/com/android/dx/merge/
H A DTypeList.java39 public int compareTo(TypeList other) { method in class:TypeList
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DNameValuePair.java79 public int compareTo(NameValuePair other) { method in class:NameValuePair
80 int result = name.compareTo(other.name);
86 return value.compareTo(other.value);
/dalvik/dx/src/com/android/dx/rop/cst/
H A DConstant.java48 public final int compareTo(Constant other) { method in class:Constant
53 return clazz.getName().compareTo(otherClazz.getName());
/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 DParameterAnnotationStruct.java95 public int compareTo(ParameterAnnotationStruct other) { method in class:ParameterAnnotationStruct
96 return method.compareTo(other.method);
H A DEncodedField.java68 return compareTo((EncodedField) other) == 0;
79 public int compareTo(EncodedField other) { method in class:EncodedField
80 return field.compareTo(other.field);
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);
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DLocalItem.java68 return 0 == compareTo(local);
72 * Compares two strings like String.compareTo(), excepts treats a null
76 * with Comparable.compareTo()
86 return a.compareTo(b);
91 public int compareTo(LocalItem local) { method in class:LocalItem
/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 DParameterAnnotationStruct.java95 public int compareTo(ParameterAnnotationStruct other) { method in class:ParameterAnnotationStruct
96 return method.compareTo(other.method);
H A DStringIdItem.java67 public int compareTo(Object other) { method in class:StringIdItem
69 return value.compareTo(otherString.value);
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalItem.java68 return 0 == compareTo(local);
72 * Compares two strings like String.compareTo(), excepts treats a null
76 * with Comparable.compareTo()
86 return a.compareTo(b);
91 public int compareTo(LocalItem local) { method in class:LocalItem
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DCatchHandlerList.java136 public int compareTo(CatchHandlerList other) { method in class:CatchHandlerList
149 int compare = thisEntry.compareTo(otherEntry);
203 return (compareTo((Entry) other) == 0);
210 public int compareTo(Entry other) { method in class:CatchHandlerList.Entry
217 return exceptionType.compareTo(other.exceptionType);
H A DCatchTable.java64 public int compareTo(CatchTable other) { method in class:CatchTable
77 int compare = thisEntry.compareTo(otherEntry);
142 return (compareTo((Entry) other) == 0);
149 public int compareTo(Entry other) { method in class:CatchTable.Entry
162 return handlers.compareTo(other.handlers);

Completed in 523 milliseconds

12