Searched refs:object2 (Results 1 – 4 of 4) sorted by relevance
30 public int compare(Prediction object1, Prediction object2) {32 double score2 = object2.score;
1798 public int compare(AppEntry object1, AppEntry object2) {1803 if (object1.info != null && object2.info != null) {1811 return object1.info.uid - object2.info.uid;1818 public int compare(AppEntry object1, AppEntry object2) {1819 if (object1.size < object2.size) return 1;1820 if (object1.size > object2.size) return -1;1821 return ALPHA_COMPARATOR.compare(object1, object2);1828 public int compare(AppEntry object1, AppEntry object2) {1831 return ALPHA_COMPARATOR.compare(object1, object2);1838 public int compare(AppEntry object1, AppEntry object2) {[all …]
205 public int compare(Account object1, Account object2) { in compare() argument206 if (object1 == object2) return 0; in compare()208 if (object2 == null) return -1; in compare()209 int result = object1.type.compareTo(object2.type); in compare()211 return object1.name.compareTo(object2.name); in compare()
4404 Pair<ProcessRecord, Integer> object2) {4405 final int adj = object2.first.mState.getSetAdj() - object1.first.mState.getSetAdj();4409 final int procState = object2.first.mState.getSetProcState()4414 final int val = object2.second - object1.second;