Searched defs:day (Results 1 - 11 of 11) sorted by relevance

/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DTimeZoneTest.java213 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) { argument
/dalvik/libcore/xml/src/main/java/javax/xml/datatype/
H A DDatatypeFactory.java141 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
143 * year, month, day, hour, minute, and second.
170 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
172 * year, month, day, hour, minute, and second.
305 * whose lexical representation contains only day, hour, minute, and second components.
345 * whose lexical representation contains only day, hour, minute, and second components.
367 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p>
406 int hours = (int) (val % 24L); // 24 hours per day
423 BigInteger hours = BigInteger.valueOf(val % 24L); // 24 hours per day
431 * <code>day</cod
459 newDurationDayTime( final boolean isPositive, final BigInteger day, final BigInteger hour, final BigInteger minute, final BigInteger second) argument
501 newDurationDayTime( final boolean isPositive, final int day, final int hour, final int minute, final int second) argument
781 newXMLGregorianCalendar( final BigInteger year, final int month, final int day, final int hour, final int minute, final int second, final BigDecimal fractionalSecond, final int timezone) argument
817 newXMLGregorianCalendar( final int year, final int month, final int day, final int hour, final int minute, final int second, final int millisecond, final int timezone) argument
879 newXMLGregorianCalendarDate( final int year, final int month, final int day, final int timezone) argument
[all...]
H A DXMLGregorianCalendar.java91 * <a name="datetimefield-day"/>
93 * <td> day </td>
198 * int day,
207 * int day,
217 * int day,
289 * @param day value constraints summarized in <a href="#datetimefield-day">day field of date/time field mapping table</a>.
291 * @throws IllegalArgumentException if <code>day</code> parameter is
295 public abstract void setDay(int day); argument
[all...]
/dalvik/libcore/luni/src/main/java/java/util/
H A DDate.java70 * @param day
71 * the day of the month, 1 - 31.
77 public Date(int year, int month, int day) { argument
79 cal.set(1900 + year, month, day);
91 * @param day
92 * the day of the month, 1 - 31.
94 * the hour of day, 0 - 23.
102 public Date(int year, int month, int day, int hour, int minute) { argument
104 cal.set(1900 + year, month, day, hour, minute);
116 * @param day
129 Date(int year, int month, int day, int hour, int minute, int second) argument
576 setDate(int day) argument
760 UTC(int year, int month, int day, int hour, int minute, int second) argument
[all...]
H A DTimeZone.java377 * @param day
378 * the day of the month.
380 * the {@code Calendar} day of the week.
382 * the time of day in milliseconds.
385 abstract public int getOffset(int era, int year, int month, int day, argument
657 * hour; tzinfo[3] -> the dst start day of week; tzinfo[4] -> the
659 * tzinfo[6] -> the dst end hour; tzinfo[7] -> the dst end day of
H A DGregorianCalendar.java65 * 53. Week 1 for a year is the earliest seven day period starting on
69 * {@code getFirstDayOfWeek()}, and the day of the week of January 1.
88 * contiguous days in that month, ending on the day before
250 * @param day
251 * the day of the month.
253 public GregorianCalendar(int year, int month, int day) { argument
255 set(year, month, day);
266 * @param day
267 * the day of the month.
273 public GregorianCalendar(int year, int month, int day, in argument
295 GregorianCalendar(int year, int month, int day, int hour, int minute, int second) argument
[all...]
H A DSimpleTimeZone.java142 * By default, this constructor specifies day-of-week-in-month rules. That
148 * Day of month: To specify an exact day of the month, such as March 1, set
151 * Day of week after day of month: To specify the first day of the week
152 * occurring on or after an exact day of the month, make the day of the week
154 * this indicates the first Monday on or after the 5th day of the
157 * Day of week before day of month: To specify the last day of the week
158 * occurring on or before an exact day o
397 getOffset(int era, int year, int month, int day, int dayOfWeek, int time) argument
646 checkDay(int month, int day) argument
725 setEndRule(int month, int day, int dayOfWeek, int time) argument
755 setEndRule(int month, int day, int dayOfWeek, int time, boolean after) argument
857 setStartRule(int month, int day, int dayOfWeek, int time) argument
887 setStartRule(int month, int day, int dayOfWeek, int time, boolean after) argument
[all...]
H A DCalendar.java74 * {@code Calendar} defines a locale-specific seven day week using two
75 * parameters: the first day of the week and the minimal days in first week
84 * month or year is defined as the earliest seven day period beginning on
96 * {@code Date} (such as only year and month but no day in the month), or
109 * determining the day, the calendar will look for one of the following
124 * For the time of day:
139 * <li> 24:00:00 "belongs" to the following day. That is, 23:59 on Dec 31, 1969
144 * noon belongs to "pm", so on the same day, we have 12:00 am (midnight) &lt; 12:01 am,
259 * possible value to Sunday (where Sunday is the first day of the week).
264 * increment and decrement buttons for the month, day, an
1195 set(int year, int month, int day) argument
1216 set(int year, int month, int day, int hourOfDay, int minute) argument
1240 set(int year, int month, int day, int hourOfDay, int minute, int second) argument
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
H A DZoneInfo.java140 int year, int month, int day,
160 calc += (day - 1) * MILLISECONDS_PER_DAY;
139 getOffset(@uppressWarningsÓ) int era, int year, int month, int day, @SuppressWarnings(Ó) int dayOfWeek, int millis) argument
H A DZoneInfoDB.java410 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int millis) { argument
/dalvik/libcore/icu/src/main/native/
H A DResources.cpp349 // get the First day of week and the minimal days in first week numbers
495 const jchar* day = ures_getStringByIndex(dayNameElemsFormat.get(), i, &dayNameLength, &status); local
499 jstring dayU = env->NewString(day, dayNameLength);

Completed in 131 milliseconds