Searched refs:yearDay (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/text/format/
H A DTime.java96 public int yearDay; field in class:Time
198 * to April 1. It also fills in weekDay, yearDay, isDst and gmtoff.
283 this.yearDay = 0;
395 * <code>yearDay</code>, and <code>gmtoff</code> are always set to zero,
565 this.yearDay = that.yearDay;
571 * Sets the fields. Sets weekDay, yearDay and gmtoff to 0, and isDst to -1.
583 this.yearDay = 0;
590 * Sets weekDay, yearDay and gmtoff to 0, and isDst to -1.
606 this.yearDay
[all...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceProcessor.java226 iterator.yearDay, iterator.getActualMaximum(Time.YEAR_DAY));
1133 * This method also computes the weekDay and yearDay fields.
1212 date.yearDay = yearDay(year, month, monthDay);
1280 static int yearDay(int year, int month, int day) { method in class:RecurrenceProcessor
1281 int yearDay = DAYS_IN_YEAR_PRECEDING_MONTH[month] + day - 1;
1283 yearDay += 1;
1285 return yearDay;
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneInfo.java81 int currYearDay = recycledTime.year * 366 + recycledTime.yearDay;
100 if (currYearDay != (recycledTime.year * 366 + recycledTime.yearDay)) {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryFragment.java1068 } else if (then.yearDay != now.yearDay) {

Completed in 383 milliseconds