Searched refs:compareTo (Results 1 - 25 of 86) sorted by relevance

1234

/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());
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);
H A DCstMemberRef.java76 int cmp = definingClass.compareTo(otherMember.definingClass);
85 return thisName.compareTo(otherName);
H A DCstNat.java81 int cmp = name.compareTo(otherNat.name);
87 return descriptor.compareTo(otherNat.descriptor);
H A DCstAnnotation.java62 return annotation.compareTo(((CstAnnotation) other).annotation);
H A DCstFieldRef.java77 return thisDescriptor.compareTo(otherDescriptor);
/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.java62 return list.compareTo(((CstArray) other).list);
113 public int compareTo(List other) { method in class:CstArray.List
121 int compare = thisItem.compareTo(otherItem);
H A DCstMemberRef.java76 int cmp = definingClass.compareTo(otherMember.definingClass);
85 return thisName.compareTo(otherName);
H A DCstInvokeDynamic.java126 result = nat.compareTo(otherInvoke.getNat());
131 result = declaringClass.compareTo(otherInvoke.getDeclaringClass());
136 return callSite.compareTo(otherInvoke.getCallSite());
/dalvik/dexgen/src/com/android/dexgen/dex/code/
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 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);
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchTable.java63 public int compareTo(CatchTable other) { method in class:CatchTable
76 int compare = thisEntry.compareTo(otherEntry);
141 return (compareTo((Entry) other) == 0);
148 public int compareTo(Entry other) { method in class:CatchTable.Entry
161 return handlers.compareTo(other.handlers);
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);
/dalvik/dx/src/com/android/dex/
H A DAnnotation.java54 @Override public int compareTo(Annotation other) { method in class:Annotation
55 return encodedAnnotation.compareTo(other.encodedAnnotation);
/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);
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);
/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/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/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/file/
H A DStringIdItem.java69 public int compareTo(Object other) { method in class:StringIdItem
71 return value.compareTo(otherString.value);
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);
/dalvik/dx/src/com/android/dx/dex/file/
H A DCallSiteIdItem.java86 public int compareTo(Object o) { method in class:CallSiteIdItem
88 return invokeDynamicRef.compareTo(other.invokeDynamicRef);
H A DStringIdItem.java67 public int compareTo(Object other) { method in class:StringIdItem
69 return value.compareTo(otherString.value);
H A DEncodedField.java67 return compareTo((EncodedField) other) == 0;
78 public int compareTo(EncodedField other) { method in class:EncodedField
79 return field.compareTo(other.field);

Completed in 631 milliseconds

1234