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

/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/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);
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/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());
H A DCstArray.java64 return list.compareTo(((CstArray) other).list);
115 public int compareTo(List other) { method in class:CstArray.List
123 int compare = thisItem.compareTo(otherItem);
/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 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);
H A DOffsettedItem.java114 public final int compareTo(OffsettedItem other) { method in class:OffsettedItem
123 return thisType.compareTo(otherType);
H A DStringIdItem.java69 public int compareTo(Object other) { method in class:StringIdItem
71 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
H A DRegisterSpec.java236 public int compareTo(RegisterSpec other) { method in class:RegisterSpec
243 int compare = type.getType().compareTo(other.type.getType());
255 return this.local.compareTo(other.local);
/dalvik/dx/src/com/android/dx/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);
H A DLocalList.java178 return (compareTo((Entry) other) == 0);
189 public int compareTo(Entry other) { method in class:LocalList.Entry
203 return spec.compareTo(other.spec);
/dalvik/dx/src/com/android/dx/rop/type/
H A DPrototype.java257 public int compareTo(Prototype other) { method in class:Prototype
268 int result = returnType.compareTo(other.returnType);
282 result = thisType.compareTo(otherType);
H A DType.java481 public int compareTo(Type other) { method in class:Type
482 return descriptor.compareTo(other.descriptor);
/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 269 milliseconds