Searched defs:yearDay (Results 1 - 2 of 2) sorted by relevance

/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/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...]

Completed in 168 milliseconds