Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/format/
DTime.java1207 public static int compare(TimeCalculator aObject, TimeCalculator bObject) { in compare() argument
1208 if (aObject.timezone.equals(bObject.timezone)) { in compare()
1210 int diff = aObject.wallTime.getYear() - bObject.wallTime.getYear(); in compare()
1215 diff = aObject.wallTime.getMonth() - bObject.wallTime.getMonth(); in compare()
1220 diff = aObject.wallTime.getMonthDay() - bObject.wallTime.getMonthDay(); in compare()
1225 diff = aObject.wallTime.getHour() - bObject.wallTime.getHour(); in compare()
1230 diff = aObject.wallTime.getMinute() - bObject.wallTime.getMinute(); in compare()
1235 diff = aObject.wallTime.getSecond() - bObject.wallTime.getSecond(); in compare()
1245 long am = aObject.toMillis(false /* use isDst */); in compare()