Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/format/
DTime.java1200 public static int compare(TimeCalculator aObject, TimeCalculator bObject) { in compare() argument
1201 if (aObject.timezone.equals(bObject.timezone)) { in compare()
1203 int diff = aObject.wallTime.getYear() - bObject.wallTime.getYear(); in compare()
1208 diff = aObject.wallTime.getMonth() - bObject.wallTime.getMonth(); in compare()
1213 diff = aObject.wallTime.getMonthDay() - bObject.wallTime.getMonthDay(); in compare()
1218 diff = aObject.wallTime.getHour() - bObject.wallTime.getHour(); in compare()
1223 diff = aObject.wallTime.getMinute() - bObject.wallTime.getMinute(); in compare()
1228 diff = aObject.wallTime.getSecond() - bObject.wallTime.getSecond(); in compare()
1239 long bm = bObject.toMillis(false /* use isDst */); in compare()