Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/ssa/
DConstCollector.java160 final HashMap<TypedConstant, Integer> countUses in getConstsSortedByCountUse() local
225 Integer has = countUses.get(cst); in getConstsSortedByCountUse()
227 countUses.put(cst, 1); in getConstsSortedByCountUse()
229 countUses.put(cst, has + 1); in getConstsSortedByCountUse()
235 for (Map.Entry<TypedConstant, Integer> entry : countUses.entrySet()) { in getConstsSortedByCountUse()
246 ret = countUses.get(b) - countUses.get(a); in getConstsSortedByCountUse()