HomeSort by relevance Sort by last modified time
    Searched defs:SUNDAY (Results 1 - 25 of 59) sorted by null

1 2 3

  /libcore/ojluni/src/main/java/java/time/
DayOfWeek.java 85 * Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and Sunday.
88 * The {@code int} value follows the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).
94 * Sunday to have the value 1, however this class provides no support for this.
142 * The singleton instance for the day-of-week of Sunday.
145 SUNDAY;
157 * The {@code int} value follows the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).
159 * @param dayOfWeek the day-of-week to represent, from 1 (Monday) to 7 (Sunday)
203 * The values are numbered following the ISO-8601 standard, from 1 (Monday) to 7 (Sunday).
206 * @return the day-of-week, from 1 (Monday) to 7 (Sunday)
357 * The calculation rolls around the end of the week from Sunday to Monday
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
TimeStatsAggregator.java 47 static final String SUNDAY = "Sunday";
64 {SUNDAY, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY};
111 case Time.SUNDAY:
112 return SUNDAY;
155 if (mFakeDayOfWeek.equals(SUNDAY) ||
166 if (time.weekDay == Time.SUNDAY || time.weekDay == Time.SATURDAY ||
  /external/icu/icu4c/source/i18n/
reldatefmt.cpp 205 SUNDAY,
255 case SUNDAY:
354 return SUNDAY;
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
calendar.h 252 * this. For instance, in US locale, first-day-of-week is set to 1, i.e., SUNDAY.
256 SUNDAY = 1,
    [all...]
  /libcore/ojluni/src/main/java/sun/util/calendar/
BaseCalendar.java 56 public static final int SUNDAY = 1;
480 return (int)(fixedDate % 7) + SUNDAY;
482 return (int)CalendarUtils.mod(fixedDate, 7) + SUNDAY;
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKDayOfWeek.java 63 import static java.time.DayOfWeek.SUNDAY;
104 TemporalAccessor[] array = {MONDAY, WEDNESDAY, SUNDAY, };
368 assertEquals(DayOfWeek.SUNDAY.toString(), "SUNDAY");
  /libcore/ojluni/src/test/java/time/tck/java/time/zone/
TCKZoneOffsetTransitionRule.java 92 null, 20, DayOfWeek.SUNDAY, TIME_0100, false, TimeDefinition.WALL,
99 Month.MARCH, 20, DayOfWeek.SUNDAY, null, false, TimeDefinition.WALL,
106 Month.MARCH, 20, DayOfWeek.SUNDAY, TIME_0100, false, null,
113 Month.MARCH, 20, DayOfWeek.SUNDAY, TIME_0100, false, TimeDefinition.WALL,
120 Month.MARCH, 20, DayOfWeek.SUNDAY, TIME_0100, false, TimeDefinition.WALL,
127 Month.MARCH, 20, DayOfWeek.SUNDAY, TIME_0100, false, TimeDefinition.WALL,
134 Month.MARCH, -29, DayOfWeek.SUNDAY, TIME_0100, false, TimeDefinition.WALL,
141 Month.MARCH, 0, DayOfWeek.SUNDAY, TIME_0100, false, TimeDefinition.WALL,
148 Month.MARCH, 32, DayOfWeek.SUNDAY, TIME_0100, false, TimeDefinition.WALL,
155 Month.MARCH, 20, DayOfWeek.SUNDAY, TIME_0100, true, TimeDefinition.WALL
    [all...]
TCKZoneRules.java 377 assertEquals(in.getDayOfWeek(), DayOfWeek.SUNDAY);
388 assertEquals(out.getDayOfWeek(), DayOfWeek.SUNDAY);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RelativeDateTimeFormatter.java 57 * fmt.format(Direction.LAST, AbsoluteUnit.SUNDAY); // "last Sunday"
58 * fmt.format(Direction.THIS, AbsoluteUnit.SUNDAY); // "this Sunday"
59 * fmt.format(Direction.NEXT, AbsoluteUnit.SUNDAY); // "next Sunday"
60 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
155 * Sunday
157 SUNDAY,
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
Calendar.java 237 * originally set to Sunday June 6, 1999. Calling
241 * Sunday May 30, 1999. This is because the roll rule imposes an
247 * closest possible value to Sunday (where Sunday is the first day of the
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 56 * fmt.format(Direction.LAST, AbsoluteUnit.SUNDAY); // "last Sunday"
57 * fmt.format(Direction.THIS, AbsoluteUnit.SUNDAY); // "this Sunday"
58 * fmt.format(Direction.NEXT, AbsoluteUnit.SUNDAY); // "next Sunday"
59 * fmt.format(Direction.PLAIN, AbsoluteUnit.SUNDAY); // "Sunday"
169 * Sunday
172 SUNDAY,
    [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 155 public static final int SUNDAY = 0;
720 * assuming that DST changes at 2am on Sunday, Nov 4, 2007.
872 * This array is indexed by the weekDay field (SUNDAY=0, MONDAY=1, etc.)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Calendar.java 450 * of the week. This field takes values <code>SUNDAY</code>,
454 * @see #SUNDAY
477 * end of the month, so the last Sunday of a month is specified as
478 * <code>DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1</code>. Because
571 * Sunday.
573 public final static int SUNDAY = 1;
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Calendar.java 272 * originally set to Sunday June 6, 1999. Calling
276 * Sunday May 30, 1999. This is because the roll rule imposes an
282 * closest possible value to Sunday (where Sunday is the first day of the
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Calendar.java 271 * originally set to Sunday June 6, 1999. Calling
275 * Sunday May 30, 1999. This is because the roll rule imposes an
281 * closest possible value to Sunday (where Sunday is the first day of the
    [all...]
  /external/caliper/lib/
joda-time-2.1.jar 
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/joda-time/joda-time/2.8.1/
joda-time-2.8.1.jar 
  /prebuilts/tools/common/m2/repository/joda-time/joda-time/2.9.1/
joda-time-2.9.1.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/lib/
icu4j-53.1.jar 

Completed in 503 milliseconds

1 2 3