Home
last modified time | relevance | path

Searched refs:otherSize (Results 1 – 8 of 8) sorted by relevance

/dalvik/dx/src/com/android/dx/rop/cst/
DCstArray.java117 int otherSize = other.size(); in compareTo() local
118 int compareSize = (thisSize < otherSize) ? thisSize : otherSize; in compareTo()
129 if (thisSize < otherSize) { in compareTo()
131 } else if (thisSize > otherSize) { in compareTo()
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
DCstArray.java117 int otherSize = other.size(); in compareTo() local
118 int compareSize = (thisSize < otherSize) ? thisSize : otherSize; in compareTo()
129 if (thisSize < otherSize) { in compareTo()
131 } else if (thisSize > otherSize) { in compareTo()
/dalvik/dx/src/com/android/dx/dex/code/
DCatchTable.java71 int otherSize = other.size(); in compareTo() local
72 int checkSize = Math.min(thisSize, otherSize); in compareTo()
83 if (thisSize < otherSize) { in compareTo()
85 } else if (thisSize > otherSize) { in compareTo()
DCatchHandlerList.java145 int otherSize = other.size(); in compareTo() local
146 int checkSize = Math.min(thisSize, otherSize); in compareTo()
157 if (thisSize < otherSize) { in compareTo()
159 } else if (thisSize > otherSize) { in compareTo()
/dalvik/dexgen/src/com/android/dexgen/dex/code/
DCatchTable.java71 int otherSize = other.size(); in compareTo() local
72 int checkSize = Math.min(thisSize, otherSize); in compareTo()
83 if (thisSize < otherSize) { in compareTo()
85 } else if (thisSize > otherSize) { in compareTo()
DCatchHandlerList.java143 int otherSize = other.size(); in compareTo() local
144 int checkSize = Math.min(thisSize, otherSize); in compareTo()
155 if (thisSize < otherSize) { in compareTo()
157 } else if (thisSize > otherSize) { in compareTo()
/dalvik/dexgen/src/com/android/dexgen/rop/type/
DPrototype.java274 int otherSize = other.parameterTypes.size(); in compareTo() local
275 int size = Math.min(thisSize, otherSize); in compareTo()
288 if (thisSize < otherSize) { in compareTo()
290 } else if (thisSize > otherSize) { in compareTo()
/dalvik/dx/src/com/android/dx/rop/type/
DPrototype.java306 int otherSize = other.parameterTypes.size(); in compareTo() local
307 int size = Math.min(thisSize, otherSize); in compareTo()
320 if (thisSize < otherSize) { in compareTo()
322 } else if (thisSize > otherSize) { in compareTo()