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

1 2 3 4 5 67 8 91011>>

  /external/webkit/LayoutTests/dom/html/level1/core/
hc_attrinsertbefore7.js 124 dayNode = doc.createCDATASection("day");
135 dayNode = doc.createCDATASection("day");
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_attrappendchild3.js 111 dayNode = doc.createTextNode("day");
129 assertEquals("lastChildValue","day",value);
hc_attrinsertbefore3.js 114 dayNode = doc.createTextNode("day");
137 assertEquals("lastChildValue","day",value);
hc_attrinsertbefore7.js 124 dayNode = doc.createCDATASection("day");
135 dayNode = doc.createCDATASection("day");
  /external/webkit/Source/WebCore/html/
FTPDirectoryDocument.cpp 180 static bool wasLastDayOfMonth(int year, int month, int day)
188 if (day == 29)
193 if (day == 28)
198 return lastDays[month] == day;
  /libcore/luni/src/main/java/javax/xml/datatype/
XMLGregorianCalendar.java 91 * <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);
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_wlocale_win32.c 300 const wchar_t * _WLocale_full_dayofweek(_Locale_time_t * ltime, int day,
302 { GetLocaleInfoW(ltime->lc.id, LOCALE_SDAYNAME1 + day, buf, (int)bufSize); return buf; }
304 const wchar_t * _WLocale_abbrev_dayofweek(_Locale_time_t * ltime, int day,
306 { GetLocaleInfoW(ltime->lc.id, LOCALE_SABBREVDAYNAME1 + day, buf, (int)bufSize); return buf; }
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleDayPickerFragment.java 50 * configured to display the week number, start the week on a given day, show a
105 // The first day of the focus month
107 // The first day that is visible in the view
145 // This allows us to update our position when a day is tapped
149 Time day = mAdapter.getSelectedDay();
150 if (day.year != mSelectedDay.year || day.yearDay != mSelectedDay.yearDay) {
151 goTo(day.toMillis(true), true, true, false);
314 * Fixes the day names header to provide correct spacing and updates the
384 // Set the selected day
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DateTimeSettings.java 191 public void onDateSet(DatePicker view, int year, int month, int day) {
194 setDate(activity, year, month, day);
354 /* package */ static void setDate(Context context, int year, int month, int day) {
359 c.set(Calendar.DAY_OF_MONTH, day);
  /external/chromium/chrome/browser/extensions/
convert_web_app_unittest.cc 64 base::Time GetTestTime(int year, int month, int day, int hour, int minute,
69 exploded.day_of_month = day;
  /external/chromium/net/ftp/
ftp_util.cc 158 bool FtpUtil::LsDateListingToTime(const string16& month, const string16& day,
167 if (!base::StringToInt(day, &time_exploded.day_of_month))
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 74 $day = substr($timePart, 6, 2); variable
77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
  /external/icu4c/i18n/unicode/
vtzone.h 169 * BYDAY rule with day of week (such as BYDAY=1SUN). This method produce
205 * @param day The reference date's day-in-month (1-based)
206 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
207 * @param millis The reference date's milliseconds in day, local standard time
212 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
226 * @param day The reference date's day-in-month (1-based)
227 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
228 * @param millis The reference date's milliseconds in day, local standard tim
    [all...]
  /external/openssh/openbsd-compat/
strptime.c 170 case 'A': /* The day of week, using the locale's form. */
175 len = strlen(_ctloc(day[i]));
176 if (strncasecmp(_ctloc(day[i]), bp, len) == 0)
226 case 'd': /* The day of month. */
251 case 'j': /* The day of year. */
319 case 'w': /* The day of week, beginning on sunday. */
  /external/openssl/crypto/
o_time.c 179 short year, month, day, hour, minute, second, member in struct:vms_vectime
205 result->tm_mday = time_values.day;
243 /* split offset into days and day seconds */
250 /* Adjust day seconds if overflow */
262 /* Convert date of time structure into a Julian day number.
271 /* Work out Julian day of new date */
277 /* Convert Julian day back to date */
298 /* Convert date to and from julian day
  /external/v8/src/
objects-debug.cc 384 CHECK(day()->IsUndefined() || day()->IsSmi() || day()->IsNaN());
397 if (day()->IsSmi()) {
398 int day = Smi::cast(this->day())->value(); local
399 CHECK(1 <= day && day <= 31);
  /external/wpa_supplicant_8/src/utils/
os.h 53 * @day: Day of month (1 .. 31)
64 int os_mktime(int year, int month, int day, int hour, int min, int sec,
71 int day; /* 1..31 */ member in struct:os_tm
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
TimeStatsAggregator.java 35 public static final String DAY_OF_WEEK = "Day of Week";
36 public static final String TIME_OF_DAY = "Time of Day";
37 public static final String PERIOD_OF_DAY = "Period of Day";
107 private static String getDayOfWeek(int day) {
108 switch (day) {
183 // get all possible day values
188 // set the fake time of day
194 // set the fake day of week
195 // set to "" to disable the fake day
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 176 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int millis) {
195 calc += (day - 1) * MILLISECONDS_PER_DAY;
  /external/icu4c/samples/cal/
cal.c 131 /* use long day names */
249 /* Determine the first day of the week */
265 /* Determine the first day of the week */
279 * (e.g. it will be one to fetch day names, since Sunday is
280 * day 1 *not* day 0.)
283 * the output array. This is used when fetching day names
328 /* Get the day names for the specified locale, in either long or short
409 /* Print the day names */
424 int32_t width, pad, i, day; local
    [all...]
  /external/v8/test/mjsunit/
date-parse.js 84 // Allow missing space between month and day.
87 // Allow year/month/day format.
89 // Allow month/day/year format.
91 // Allow month/day year format.
93 // Allow comma instead of space after day, month and year.
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 245 // Use normalize(true) with these tests to change the date by 1 day.
249 // Nov 4, 12am + 0 day = Nov 4, 12am
250 // Nov 5, 12am + 0 day = Nov 5, 12am
254 // Nov 3, 12am + 1 day = Nov 4, 12am
255 // Nov 4, 12am + 1 day = Nov 5, 12am
256 // Nov 5, 12am + 1 day = Nov 6, 12am
261 // Nov 3, 1am + 1 day = Nov 4, 1am
262 // Nov 4, 1am + 1 day = Nov 5, 1am
263 // Nov 5, 1am + 1 day = Nov 6, 1am
268 // Nov 3, 2am + 1 day = Nov 4, 2a
691 int day = Time.getJulianDay(millis, time.gmtoff); local
735 int day = Time.getJulianDay(millis, time.gmtoff); local
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 41 * A view for selecting a month / year / day based on a calendar like layout.
81 * @param dayOfMonth The day of the month that was set.
104 mDayPicker = (NumberPicker) findViewById(R.id.day);
143 // Adjust max day of the month
154 // Adjust max day for leap years if needed
297 private SavedState(Parcelable superState, int year, int month, int day, boolean hasYear,
302 mDay = day;
395 * @param dayOfMonth The initial day of the month.
407 * @param dayOfMonth The initial day of the month.
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePicker.java 48 * A view for selecting a month / year / day based on a calendar like layout.
91 * @param dayOfMonth The day of the month that was set.
112 mDayPicker = (NumberPicker) findViewById(R.id.day);
153 // Adjust max day of the month
165 // Adjust max day for leap years if needed
308 private SavedState(Parcelable superState, int year, int month, int day, boolean hasYear,
313 mDay = day;
408 * @param dayOfMonth The initial day of the month.
420 * @param dayOfMonth The initial day of the month.
  /bionic/libc/kernel/common/linux/
telephony.h 66 char day[3]; member in struct:__anon573

Completed in 1024 milliseconds

1 2 3 4 5 67 8 91011>>