HomeSort by relevance Sort by last modified time
    Searched full:sunday (Results 26 - 50 of 205) sorted by null

12 3 4 5 6 7 8 9

  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeeksAdapter.java 64 * Which day the week should start on. {@link Time#SUNDAY} through
91 // When the week starts; numbered like Time.<WEEKDAY> (e.g. SUNDAY=0).
SimpleWeekView.java 67 * This sets one of the days in this view as selected {@link Time#SUNDAY}
72 * Which day the week should start on. {@link Time#SUNDAY} through
94 protected static final int DEFAULT_WEEK_START = Time.SUNDAY;
SimpleDayPickerFragment.java 104 // When the week starts; numbered like Time.<WEEKDAY> (e.g. SUNDAY=0).
251 for (int i = Calendar.SUNDAY; i <= Calendar.SATURDAY; i++) {
252 mDayLabels[i - Calendar.SUNDAY] = DateUtils.getDayOfWeekString(i,
335 } else if (position == Time.SUNDAY) {
  /external/icu4c/i18n/unicode/
dtfmtsym.h 310 * Gets weekday strings. For example: "Sunday", "Monday", etc.
319 * Sets weekday strings. For example: "Sunday", "Monday", etc.
343 * Gets weekday strings by width and context. For example: "Sunday", "Monday", etc.
353 * Sets weekday strings by width and context. For example: "Sunday", "Monday", etc.
527 * Weekday strings. For example: "Sunday", "Monday", etc.
545 * Standalone Weekday strings. For example: "Sunday", "Monday", etc.
  /external/icu4c/i18n/
simpletz.cpp 268 * Time starts at the first Sunday in April, at 2 AM in standard time.
270 * setStartRule(TimeFields.APRIL, 1, TimeFields.SUNDAY, 2*60*60*1000);
289 * (e.g., (15, -SUNDAY) is the first Sunday after the 15th of the month
290 * [or the 15th itself if the 15th is a Sunday].)
341 * Savings Time ends at the last (-1) Sunday in October, at 2 AM in standard time.
343 * setEndRule(TimeFields.OCTOBER, -1, TimeFields.SUNDAY, 2*60*60*1000);
775 // lastSun the last Sunday in the month
777 // Sun>=8 first Sunday on or after the eighth
778 // Sun<=25 last Sunday on or before the 25t
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 398 * see {@link Time#SUNDAY}
447 return Time.SUNDAY;
481 return (firstDayOfWeek == Time.SUNDAY && column == 6)
487 * Determine whether the column position is Sunday or not.
491 * @return true if the column is Sunday position
494 return (firstDayOfWeek == Time.SUNDAY && column == 0)
    [all...]
DayOfMonthCursor.java 48 * {@link java.util.Calendar#SUNDAY}.
  /bionic/libc/tzcode/
strptime.c 61 "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
340 case 'U': /* The week of year, beginning on sunday. */
353 case 'w': /* The day of week, beginning on sunday. */
  /ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
c_locale_dummy.c 430 { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
471 { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };
504 { L"Sunday", L"Monday", L"Tuesday", L"Wednesday", L"Thursday", L"Friday", L"Saturday" };
  /frameworks/opt/calendar/src/com/android/calendarcommon/
EventRecurrence.java 164 * Converts one of the Calendar.SUNDAY constants to the SU, MO, etc.
172 case Calendar.SUNDAY:
195 case Time.SUNDAY:
218 return Time.SUNDAY;
237 * Converts one of the SU, MO, etc. constants to the Calendar.SUNDAY
246 return Calendar.SUNDAY;
    [all...]
  /external/icu4c/test/intltest/
tzoffloc.cpp 153 2*HOUR, DateTimeRule::WALL_TIME); // 1st Sunday in April, at 2AM wall time
164 2*HOUR, DateTimeRule::WALL_TIME); // last Sunday in October, at 2AM wall time
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 29 var daysLong = ["Sunday", "Monday", "Tuesday", "Wednesday",
195 var weekday = w()!=0?w()-1:6; // makes sunday (0), into 6.
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 29 var daysLong = ["Sunday", "Monday", "Tuesday", "Wednesday",
195 var weekday = w()!=0?w()-1:6; // makes sunday (0), into 6.
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarm.java 251 * 0x40: Sunday
262 Calendar.SUNDAY,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
langinfo.h 63 DAY_1, /* Sunday */
171 _NL_WDAY_1, /* Sunday */
  /libcore/luni/src/main/java/java/util/
Calendar.java 251 * set to Sunday June 6, 1999. Calling
254 * sets the calendar to Sunday May 30, 1999. This is because the roll rule
260 * possible value to Sunday (where Sunday is the first day of the week).
426 * Value of the {@code DAY_OF_WEEK} field indicating Sunday.
428 public static final int SUNDAY = 1;
551 * day of the week. This field takes values {@code SUNDAY},
556 * @see #SUNDAY
580 * the end of the month, so the last Sunday of a month is specified as
581 * {@code DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1}. Becaus
    [all...]
SimpleTimeZone.java 33 * (dayOfWeekInMonth = -1) Sunday in October, at 2 AM in standard time.
103 * is, if the {@code startDay} is 1, and the {@code startDayOfWeek} is {@code SUNDAY}, then this
104 * indicates the first Sunday in the {@code startMonth}. A {@code startDay} of -1 likewise
105 * indicates the last Sunday. However, by using negative or zero values for
553 if (dayOfWeek < Calendar.SUNDAY || dayOfWeek > Calendar.SATURDAY) {
    [all...]
  /cts/tests/tests/preference2/res/values/
arrays.xml 78 <item>Every Sunday</item>
  /development/samples/ApiDemos/res/values/
arrays.xml 79 <item>Every Sunday</item>
  /external/icu4c/samples/cal/
cal.c 279 * (e.g. it will be one to fetch day names, since Sunday is
284 * in locales where the week doesn't start on Sunday.
330 for the locale (not all locales begin weeks on Sunday; in France,
633 month is a 1 = Sunday, we want firstday to be 6, not -1 */
  /external/libvpx/examples/includes/geshi/geshi/
applescript.php 60 'fri','saturday','sat','sunday','sun','month','january','jan','february','feb','march',
  /external/nist-sip/java/gov/nist/javax/sip/parser/
HeaderParser.java 68 return Calendar.SUNDAY;
  /frameworks/base/core/java/android/util/
DayOfMonthCursor.java 46 * {@link java.util.Calendar#SUNDAY}.
  /frameworks/base/tools/layoutlib/bridge/src/libcore/icu/
ICU_Delegate.java 175 "Monday" ,"Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" };
  /external/bluetooth/glib/docs/reference/glib/tmpl/
date.sgml 241 @G_DATE_SUNDAY: Sunday
658 are understood to being on Sunday. The date must be valid. Can return 0 if
659 the day is before the first Sunday of the year.
669 on Sunday. Will be 52 or 53. The date must be valid. (Years always have 52
673 to be a Sunday.)

Completed in 933 milliseconds

12 3 4 5 6 7 8 9