Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/rop/cst/
DCstArray.java114 int thisSize = size(); in compareTo() local
116 int compareSize = (thisSize < otherSize) ? thisSize : otherSize; in compareTo()
127 if (thisSize < otherSize) { in compareTo()
129 } else if (thisSize > otherSize) { in compareTo()
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
DCstArray.java116 int thisSize = 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.java69 int thisSize = size(); in compareTo() local
71 int checkSize = Math.min(thisSize, otherSize); in compareTo()
82 if (thisSize < otherSize) { in compareTo()
84 } else if (thisSize > otherSize) { in compareTo()
DCatchHandlerList.java142 int thisSize = 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/dex/code/
DCatchTable.java70 int thisSize = 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.java142 int thisSize = 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.java273 int thisSize = 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 thisSize = parameterTypes.size(); in compareTo() local
308 int size = Math.min(thisSize, otherSize); in compareTo()
321 if (thisSize < otherSize) { in compareTo()
323 } else if (thisSize > otherSize) { in compareTo()