Searched refs:object2 (Results 1 – 4 of 4) sorted by relevance
30 public int compare(Prediction object1, Prediction object2) {32 double score2 = object2.score;
1855 public int compare(AppEntry object1, AppEntry object2) {1856 int compareResult = sCollator.compare(object1.label, object2.label);1860 if (object1.info != null && object2.info != null) {1862 sCollator.compare(object1.info.packageName, object2.info.packageName);1868 return object1.info.uid - object2.info.uid;1875 public int compare(AppEntry object1, AppEntry object2) {1876 if (object1.size < object2.size) return 1;1877 if (object1.size > object2.size) return -1;1878 return ALPHA_COMPARATOR.compare(object1, object2);1885 public int compare(AppEntry object1, AppEntry object2) {[all …]
211 public int compare(Account object1, Account object2) { in compare() argument212 if (object1 == object2) return 0; in compare()214 if (object2 == null) return -1; in compare()215 int result = object1.type.compareTo(object2.type); in compare()217 return object1.name.compareTo(object2.name); in compare()
4592 Pair<ProcessRecord, Integer> object2) {4593 final int adj = object2.first.mState.getSetAdj() - object1.first.mState.getSetAdj();4597 final int procState = object2.first.mState.getSetProcState()4602 final int val = object2.second - object1.second;