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.java119 public int yearDay; field in class:Time
214 * to April 1. It also fills in weekDay, yearDay, isDst and gmtoff.
313 this.yearDay = 0;
390 * <code>yearDay</code>, and <code>gmtoff</code> are always set to zero,
487 yearDay = 0;
675 this.yearDay = 0;
793 this.yearDay = that.yearDay;
799 * Sets the fields. Sets weekDay, yearDay and gmtoff to 0, and isDst to -1.
811 this.yearDay
[all...]

Completed in 93 milliseconds