HomeSort by relevance Sort by last modified time
    Searched refs:day (Results 76 - 100 of 376) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/base/
time_mac.cc 69 date.day = exploded.day_of_month;
92 exploded->day_of_month = date.day;
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbEtwsInfo.java 138 int day = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[2]); local
160 time.monthDay = day;
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java 46 * day header or an event.
53 * mType is either a day header (TYPE_DAY) or an event (TYPE_MEETING)
58 * If mType is TYPE_DAY, then mData is the index into day infos.
191 * {@link DayInfo} is a class that represents a day header in the widget. It
192 * contains all of the data necessary to display that day header, including
197 /** The Julian day */
200 /** The string representation of this day header, to be displayed */
289 // wrong endDay for all day events
296 // Adjust all-day times into local timezone
308 // deal with all-day event
330 int day = mTodayJulianDay; local
    [all...]
  /external/v8/src/
date.js 115 function MakeDate(day, time) {
116 var time = day * msPerDay + time;
197 var day = MakeDay(year, month, date);
199 value = MakeDate(day, time);
281 var day = MakeDay(arr[0], arr[1], arr[2]);
283 var date = MakeDate(day, time);
306 var day = MakeDay(year, month, date);
308 return TimeClip(MakeDate(day, time));
617 var day = MakeDay(LOCAL_YEAR(this), LOCAL_MONTH(this), date);
618 return SET_LOCAL_DATE_VALUE(this, MakeDate(day, LOCAL_TIME_IN_DAY(this)))
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_rel.c 51 int32_t drm_checkDate(int32_t year, int32_t month, int32_t day,
55 day >= 1 && day <= drm_monthDays(year, month) &&
66 int32_t year, mon, day, hour, min, sec; local
95 /** get day */
101 day = atoi((char *)pHead);
128 if (0 != drm_checkDate(year, mon, day, hour, min, sec))
131 YMD_HMS_2_INT(year, mon, day, dateTime->date, hour, min, sec,
238 int32_t year, mon, day, hour, min, sec; local
364 /** get day */
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/jni/
drm1_jni.c 33 #define MS_PER_DAY 24 * MS_PER_HOUR /* Milliseconds per day */
37 #define SECONDS_PER_DAY 24 * SECONDS_PER_HOUR /* Seconds per day */
306 * \param day the day (1 - 31)
315 uint32_t year, uint32_t month, uint32_t day,
326 && day > 0 && day <= 31
330 /* Set 'day' to the number of days into the year. */
331 day += ydays[month - 1] + (month > 2 && leap (year)) - 1;
333 /* Now calculate 'day' to the number of days since Jan 1, 1970. *
356 int32_t year, month, day, hour, minute, second; local
399 int32_t year, month, day, hour, minute, second; local
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceProcessor.java 321 * Compute the day of the week for the first day of the month. "instance" has a
322 * day number and a DotW, so we compute the DotW of the 1st from that. Note DotW
325 * The basic calculation is to take the instance's "day of the week" number, subtract
326 * (day of the month - 1) mod 7, and then make sure it's positive. We can simplify
341 * Generate a set according to the BYDAY rules. For each day of the month, determine
342 * if its day of the week is included. If so, append it to the day set.
349 // For each month day, see if it's part of the set. (This makes some assumptions
430 boolean get(Time iterator, int day)
940 int day; local
    [all...]
  /external/grub/docs/
mdate-sh 115 # Get the month. Next argument is day, followed by the year or time.
131 day=$2
134 # the time of day or the year.
161 echo $day $month $year
  /external/icu4c/i18n/
ethpccal.h 285 * Convert an Ethiopic year, month, and day to a Julian day.
289 * @param day the day
290 * @return Julian day
293 int32_t ethiopicToJD(int32_t year, int32_t month, int32_t day);
vzone.cpp 117 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
119 return ((VTimeZone*)zone)->VTimeZone::getOffset(era, year, month, day, dayOfWeek, millis, status);
123 vzone_getOffset2(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
126 return ((VTimeZone*)zone)->VTimeZone::getOffset(era, year, month, day, dayOfWeek, millis, monthLength, status);
simpletz.cpp 42 // and day-of-week-on-or-before-that-date mode (DOW_LE_DOM_MODE).
275 * day of week in the month (e.g., (2, WEDNESDAY) is the second Wednesday
278 * the day of week in the month counting backward from the end of the month.
281 * specifies the day of the month, regardless of what day of the week it is.
282 * (e.g., (10, 0) is the tenth day of the month)
284 * specifies the day of the month counting backward from the end of the
285 * month, regardless of what day of the week it is (e.g., (-2, 0) is the
286 * next-to-last day of the month).
288 * first specified day of the week on or after the specfied day of the month
516 double day = uprv_floor(date \/ U_MILLIS_PER_DAY); local
    [all...]
olsontz.h 167 int32_t day, uint8_t dayOfWeek,
174 int32_t day, uint8_t dayOfWeek,
vzone.h 151 * BYDAY rule with day of week (such as BYDAY=1SUN). This method produce
181 * @param day The reference date's day-in-month (1-based)
182 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
183 * @param millis The reference date's milliseconds in day, local standard time
188 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
203 * @param day The reference date's day-in-month (1-based)
204 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
205 * @param millis The reference date's milliseconds in day, local standard tim
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 87 day=date.substring(8,10);
100 if(month>12||day>31||month<=0||day<=0||(isNaN(month)==true)||(isNaN(day)==true)||(isNaN(year)==true)){
106 if(((month==1||month==3||month==5||month==7||month==8||month==10||month==12)&&day>31)||(year%4==0&&month==2&&day>29)||(year%4!=0&&month==2&&day>28)||((month==4||month==6||month==9||month==11)&&day>30)){
120 day=date.substring(8,10);
137 if(month>12||day>31||month<=0||day<=0||(isNaN(month)==true)||(isNaN(day)==true)||(isNaN(year)==true))
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
NV12_resize.h 42 mmInt32 day; member in struct:__anon21869
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 102 private int day; field in class:DateTimeParser.Date
104 public Date(String year, int month, int day) {
107 this.day = day;
112 public int getDay() { return day; }
204 d = day();
211 final public int day() throws ParseException { method in class:DateTimeParser
  /external/wpa_supplicant_8/src/utils/
os_internal.c 44 int os_mktime(int year, int month, int day, int hour, int min, int sec,
49 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
57 tm.tm_mday = day;
78 tm->day = tm2->tm_mday;
os_unix.c 63 int os_mktime(int year, int month, int day, int hour, int min, int sec,
70 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
78 tm.tm_mday = day;
114 tm->day = tm2->tm_mday;
  /packages/apps/Calendar/src/com/android/calendar/event/
CreateEventDialogFragment.java 52 * Allows the user to quickly create a new all-day event from the calendar's month view.
108 public CreateEventDialogFragment(Time day) {
109 setDay(day);
112 public void setDay(Time day) {
113 mDateString = day.format(EVENT_DATE_FORMAT);
114 mDateInMillis = day.toMillis(true);
  /external/libxml2/
xmlschemastypes.c 64 unsigned int day :5; /* 1 <= day <= 31 */ member in struct:_xmlSchemaValDate
78 long day; member in struct:_xmlSchemaValDuration
3556 long carry, mon, day; local
5847 unsigned long mon, day, hour = 0, min = 0; local
    [all...]
  /libcore/luni/src/main/java/java/util/
Calendar.java 32 * {@code YEAR}, {@code MONTH}, {@code DAY},
75 * {@code Calendar} defines a locale-specific seven day week using two
76 * parameters: the first day of the week and the minimal days in first week
85 * month or year is defined as the earliest seven day period beginning on
97 * {@code Date} (such as only year and month but no day in the month), or
110 * determining the day, the calendar will look for one of the following
125 * For the time of day:
140 * <li> 24:00:00 "belongs" to the following day. That is, 23:59 on Dec 31, 1969
145 * noon belongs to "pm", so on the same day, we have 12:00 am (midnight) &lt; 12:01 am,
260 * possible value to Sunday (where Sunday is the first day of the week)
    [all...]
  /external/icu4c/i18n/unicode/
rbtz.h 141 * @param day The reference date's day-in-month (1-based)
142 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
143 * @param millis The reference date's milliseconds in day, local standard time
148 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
162 * @param day The reference date's day-in-month (1-based)
163 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
164 * @param millis The reference date's milliseconds in day, local standard time
170 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
    [all...]
timezone.h 396 * @param day The reference date's day-in-month (1-based)
397 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
398 * @param millis The reference date's milliseconds in day, local standard time
403 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
418 * @param day the day-in-month of the given date.
419 * @param dayOfWeek the day-of-week of the given date.
420 * @param milliseconds the millis in day in <em>standard</em> local time.
426 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
    [all...]
  /external/chromium/chrome/browser/ui/webui/
history2_ui.cc 154 int day = 0; local
155 ExtractIntegerValue(args, &day);
160 options.begin_time -= base::TimeDelta::FromDays(day);
162 options.end_time -= base::TimeDelta::FromDays(day - 1);
206 // Get day to delete data from.
265 // and snippet, browse results need day and time information).
350 // first day of the following month.
history_ui.cc 154 int day = 0; local
155 ExtractIntegerValue(args, &day);
160 options.begin_time -= base::TimeDelta::FromDays(day);
162 options.end_time -= base::TimeDelta::FromDays(day - 1);
206 // Get day to delete data from.
265 // and snippet, browse results need day and time information).
338 // first day of the following month.

Completed in 1001 milliseconds

1 2 34 5 6 7 8 91011>>