/prebuilts/gdb/linux-x86/lib/python2.7/logging/ |
handlers.py | 50 _MIDNIGHT = 24 * 60 * 60 # number of seconds in a day 181 # W{0-6} - roll over on a certain day; 0 - Monday 198 self.interval = 60 * 60 * 24 # one day 204 raise ValueError("You must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s" % self.when) 206 raise ValueError("Invalid day specified for weekly rollover: %s" % self.when) 228 # if you are rolling over at midnight, then your base interval is 1 day, 229 # but you want to start that one day clock at midnight, not now. So, we 246 # If we are rolling over on a certain day, add in the number of days until 248 # until the next day starts. There are three cases: 249 # Case 1) The day to rollover is today; in this case, do nothin [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
handlers.py | 50 _MIDNIGHT = 24 * 60 * 60 # number of seconds in a day 181 # W{0-6} - roll over on a certain day; 0 - Monday 198 self.interval = 60 * 60 * 24 # one day 204 raise ValueError("You must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s" % self.when) 206 raise ValueError("Invalid day specified for weekly rollover: %s" % self.when) 228 # if you are rolling over at midnight, then your base interval is 1 day, 229 # but you want to start that one day clock at midnight, not now. So, we 246 # If we are rolling over on a certain day, add in the number of days until 248 # until the next day starts. There are three cases: 249 # Case 1) The day to rollover is today; in this case, do nothin [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/ |
handlers.py | 50 _MIDNIGHT = 24 * 60 * 60 # number of seconds in a day 181 # W{0-6} - roll over on a certain day; 0 - Monday 198 self.interval = 60 * 60 * 24 # one day 204 raise ValueError("You must specify a day for weekly rollover from 0 to 6 (0 is Monday): %s" % self.when) 206 raise ValueError("Invalid day specified for weekly rollover: %s" % self.when) 228 # if you are rolling over at midnight, then your base interval is 1 day, 229 # but you want to start that one day clock at midnight, not now. So, we 246 # If we are rolling over on a certain day, add in the number of days until 248 # until the next day starts. There are three cases: 249 # Case 1) The day to rollover is today; in this case, do nothin [all...] |
/external/autotest/site_utils/suite_scheduler/ |
timed_event_unittest.py | 192 """Test that Merge() works when the deadline time of day changes.""" 203 """Test that deadline is unchanged when time of day is unchanged.""" 262 """Ensure Nightly gets most recent builds in last day.""" 317 """Test that Merge() works when the deadline time of day changes.""" 400 """Test FilterTasks function can filter tasks by current day.""" 401 Task = collections.namedtuple('Task', 'day') 402 task_1 = Task(day=6) 403 task_2 = Task(day=2) 404 task_3 = Task(day=5)
|
/external/icu/icu4c/source/test/intltest/ |
tzbdtest.cpp | 167 int32_t y, m, day, h, min, sec; local 168 dateToFields(d, y, m, day, h, min, sec); 170 showNN(day) + " " + showNN(h) + ":" + showNN(min) + 417 * Test the handling of the "new" rules; that is, rules other than nth Day of week.
|
calcasts.cpp | 8 * conversion between julian-day to fields and vice versa. 64 checkField(cal, UCAL_DATE, cases[i].day,status); 76 cal->set(UCAL_DATE, cases[i].day); 128 // Julian Day Era Year Month Day WkDay Hour Min Sec 217 // Julian Day Era Year Month Day WkDay Hour Min Sec 287 // Julian Day Era Year Month Day WkDay Hour Min Sec 304 // G.YY/MM/DD Era Year Month Day WkDay Hour Min Se [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
CalendarTest.java | 263 // DAY/MONTH has priority when DATE set after DAY_OF_YEAR 528 // test by day 842 for (int day = 1; day <= 7; day++) { 843 cal.set(Calendar.DAY_OF_WEEK, day); 844 value = symbols.getShortWeekdays()[day]; 847 value = symbols.getWeekdays()[day]; [all...] |
/cts/tests/app/app/src/android/app/stubs/ |
DialogStubActivity.java | 431 public void onDateChanged(DatePicker view, int year, int month, int day) { 433 super.onDateChanged(view, year, month, day);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
DangiTest.java | 131 * Make sure no Gregorian dates map to Chinese 1-based day of 299 // year mon day field amount year mon day 324 // year mon day field amount year mon day 376 * Convert year,month,day values to the form "year/month/day". 379 static public String ymdToString(int year, int month, int isLeapMonth, int day) { 380 return "" + year + "/" + (month + 1) + ((isLeapMonth != 0) ? "(leap)" : "") + "/" + day;
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
DangiTest.java | 127 * Make sure no Gregorian dates map to Chinese 1-based day of 295 // year mon day field amount year mon day 320 // year mon day field amount year mon day 372 * Convert year,month,day values to the form "year/month/day". 375 static public String ymdToString(int year, int month, int isLeapMonth, int day) { 376 return "" + year + "/" + (month + 1) + ((isLeapMonth != 0) ? "(leap)" : "") + "/" + day;
|
/external/jdiff/src/jdiff/ |
HTMLStatistics.java | 56 Date day = new Date(); local 80 h_.writeText(" <td class=\"diffvalue\">" + formatter.format( day ) + "</td>");
|
/external/v8/test/intl/date-format/ |
parse-MMMdy.js | 35 day: 'numeric',
|
parse-mdyhms.js | 34 day: 'numeric', hour: 'numeric',
|
/frameworks/base/core/java/android/text/format/ |
TimeFormatter.java | 285 int day = (wallTime.getWeekDay() == 0) ? DAYSPERWEEK : wallTime.getWeekDay(); local 286 numberFormatter.format("%d", day);
|
/libcore/luni/src/test/java/libcore/java/util/ |
GregorianCalendarTest.java | 113 // "1st Jan 2000 00:00:01 GMT" is 8 hours before the Julian/Gregorian switch in LA. The day 220 // When first week can have single day 391 public int getOffset(int era, int year, int month, int day, int dayOfWeek, 393 return timeZone.getOffset(era, year, month, day, dayOfWeek, milliseconds);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
Cookie.py | 392 year, month, day, hh, mm, ss, wd, y, z = gmtime(now + future) 394 (weekdayname[wd], day, monthname[month], year, hh, mm, ss)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
Cookie.py | 392 year, month, day, hh, mm, ss, wd, y, z = gmtime(now + future) 394 (weekdayname[wd], day, monthname[month], year, hh, mm, ss)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
Cookie.py | 392 year, month, day, hh, mm, ss, wd, y, z = gmtime(now + future) 394 (weekdayname[wd], day, monthname[month], year, hh, mm, ss)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
Cookie.py | 392 year, month, day, hh, mm, ss, wd, y, z = gmtime(now + future) 394 (weekdayname[wd], day, monthname[month], year, hh, mm, ss)
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
sgiarcs.h | 140 unsigned short day; member in struct:linux_tinfo
|
/device/generic/goldfish/gps/ |
gps_qemu.c | 289 int day, mon, year; local 295 day = str2int(tok.p, tok.p+2); 299 if ((day|mon|year) < 0) { 306 r->utc_day = day;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/ |
util.py | 487 decoded_datetime.day,
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
TimeZoneNamesImpl.java | 838 int year = 0, month = 0, day = 0, hour = 0, min = 0; local 864 day = 10*day + n; 866 throw new IllegalArgumentException("Bad day"); 888 long date = Grego.fieldsToDay(year, month - 1, day) * Grego.MILLIS_PER_DAY [all...] |
/external/icu/icu4c/source/i18n/ |
rbtz.cpp | 363 RuleBasedTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 372 return getOffset(era, year, month, day, dayOfWeek, millis, 378 RuleBasedTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 390 UDate time = (UDate)Grego::fieldsToDay(year, month, day) * U_MILLIS_PER_DAY + millis;
|
zonemeta.cpp | 160 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, n; local 185 day = 10*day + n; 212 UDate date = Grego::fieldsToDay(year, month - 1, day) * U_MILLIS_PER_DAY
|