/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_datetime.py | 200 b = td(0, 60) # One minute
575 self.assertEqual(fromord.minute, 0)
[all...] |
/external/python/cpython2/Lib/test/ |
test_datetime.py | 200 b = td(0, 60) # One minute 615 self.assertEqual(fromord.minute, 0) [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
_strptime.py | 331 hour = minute = second = fraction = 0
385 minute = int(found_dict['M'])
450 hour, minute, second,
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/ |
ICUZDump.java | 167 public long getTime(int year, int month, int dayOfMonth, int hour, int minute, int second) { 173 cal.set(year, month, dayOfMonth, hour, minute, second); 179 cal.set(year, month, dayOfMonth, hour, minute, second);
|
/external/python/cpython2/Lib/ |
_strptime.py | 339 hour = minute = second = fraction = 0 393 minute = int(found_dict['M']) 474 hour, minute, second,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
datetimemodule.c | 413 "minute must be in 0..59");
574 int *hour, int *minute, int *second,
578 normalize_pair(minute, second, 60);
579 normalize_pair(hour, minute, 60);
671 new_datetime_ex(int year, int month, int day, int hour, int minute,
682 DATE_SET_MINUTE(self, minute);
699 new_time_ex(int hour, int minute, int second, int usecond,
710 TIME_SET_MINUTE(self, minute);
1938 PyObject *minute = NULL; local 3147 int minute = 0; local 3414 int minute; local 3677 int minute = 0; local 4080 int minute = DATE_GET_MINUTE(date); local [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
datetimemodule.c | 413 "minute must be in 0..59");
574 int *hour, int *minute, int *second,
578 normalize_pair(minute, second, 60);
579 normalize_pair(hour, minute, 60);
671 new_datetime_ex(int year, int month, int day, int hour, int minute,
682 DATE_SET_MINUTE(self, minute);
699 new_time_ex(int hour, int minute, int second, int usecond,
710 TIME_SET_MINUTE(self, minute);
1938 PyObject *minute = NULL; local 3147 int minute = 0; local 3414 int minute; local 3677 int minute = 0; local 4080 int minute = DATE_GET_MINUTE(date); local [all...] |
/external/python/cpython2/Modules/ |
datetimemodule.c | 413 "minute must be in 0..59"); 574 int *hour, int *minute, int *second, 578 normalize_pair(minute, second, 60); 579 normalize_pair(hour, minute, 60); 671 new_datetime_ex(int year, int month, int day, int hour, int minute, 682 DATE_SET_MINUTE(self, minute); 699 new_time_ex(int hour, int minute, int second, int usecond, 710 TIME_SET_MINUTE(self, minute); 1943 PyObject *minute = NULL; local 3151 int minute = 0; local 3418 int minute; local 3680 int minute = 0; local 4083 int minute = DATE_GET_MINUTE(date); local [all...] |
/external/autotest/client/site_tests/power_LoadTest/extension/ |
urls.js | 41 delay: seconds(60), // A minute on each page 81 delay: minutes(1), // A minute on each page
|
/external/autotest/tko/ |
utils_unittest.py | 20 self.assertEquals(utc_date.minute, 0)
|
/external/python/apitools/apitools/base/protorpclite/ |
util.py | 289 decoded_datetime.minute,
|
/external/python/cpython2/Doc/includes/ |
tzinfo-examples.py | 73 dt.hour, dt.minute, dt.second,
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/ |
DurationPicker.java | 75 mMinutePicker = (NumberPicker) findViewById(R.id.minute); 136 * Returns the current minute. 143 * Set the current minute. 158 * Set the current minute. 182 * Set the state of the spinners appropriate to the current minute. 189 * Set the state of the spinners appropriate to the current minute.
|
/external/python/dateutil/dateutil/tz/ |
win.py | 294 def picknthweekday(year, month, dayofweek, hour, minute, whichweek): 296 first = datetime.datetime(year, month, 1, hour, minute)
|
/external/v8/src/ |
dateparser.h | 23 // [4]: minute 32 YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, MILLISECOND, UTC_OFFSET, OUTPUT_SIZE 281 void SetAbsoluteMinute(int minute) { minute_ = minute; }
|
/external/fonttools/Lib/fontTools/ufoLib/ |
validators.py | 178 hour, minute, second = time.split(":") 181 if len(minute) != 2: 187 minute = int(minute) 193 if minute < 0 or minute > 59:
|
/external/libaom/libaom/test/ |
gviz_api.py | 55 o.year, o.month - 1, o.day, o.hour, o.minute, o.second) 58 o.year, o.month - 1, o.day, o.hour, o.minute, o.second, 63 return [o.hour, o.minute, o.second] 249 return datetime.time(value.hour, value.minute, value.second) 276 value.minute, 283 value.minute, [all...] |
/external/python/cpython3/Lib/test/ |
datetimetester.py | 310 # Sub-minute offsets: 452 b = td(0, 60) # One minute 830 minute = timedelta(minutes=1) 831 self.assertEqual(t / minute, 2.5) 832 self.assertEqual(t // minute, 2) 844 minute = timedelta(minutes=1) 845 r = t % minute 849 r = t % minute 859 minute = timedelta(minutes=1) 860 q, r = divmod(t, minute) [all...] |
/external/python/dateutil/dateutil/parser/ |
_parser.py | 290 ("m", "minute", "minutes"), 601 default = datetime.datetime.now().replace(hour=0, minute=0, 624 "hour", "minute", "second", "microsecond", 784 min_offset = int(l[i + 3]) # TODO: Check that l[i+3] is minute-like? 858 res.minute = int(s[2:]) 873 res.minute = int(s[2:4]) 885 res.minute = int(s[10:12]) 895 # TODO: checking that hour/minute/second are not 903 (res.minute, res.second) = self._parse_min_sec(value) [all...] |
/cts/tests/tests/text/src/android/text/format/cts/ |
TimeTest.java | 142 assertEquals(time.minute, anotherTime.minute); 419 local.minute += test.delta; 426 Fields.verifyTimeEquals("minute test index " + index + ", normalize():", 434 local.minute += test.delta; 442 Fields.verifyTimeEquals("minute test index " + index + ", toMillis():", 589 assertEquals(59, t.getActualMaximum(Time.MINUTE)); 636 assertEquals(0, t.minute); [all...] |
/external/python/cpython3/Lib/ |
_strptime.py | 366 hour = minute = second = fraction = 0 424 minute = int(found_dict['M']) 565 hour, minute, second,
|
/external/autotest/site_utils/ |
perf_csv_uploader.py | 135 str(self.test_view.job_finished_time.minute).zfill(2))
|
/external/icu/icu4c/source/i18n/ |
gregocal.cpp | 93 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // MINUTE 123 * MINUTE 0 0 59 59 238 int32_t hour, int32_t minute, UErrorCode& status) 249 set(UCAL_MINUTE, minute); 255 int32_t hour, int32_t minute, int32_t second, 267 set(UCAL_MINUTE, minute); [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
timezone.h | [all...] |
/external/libtextclassifier/utils/calendar/ |
calendar_test-include.cc | 28 /*day_of_month=*/0, /*hour=*/0, /*minute=*/0, /*second=*/0, 95 data.minute = 33; 150 /*minute=*/0, 170 /*minute=*/0, 190 /*minute=*/0, 210 /*minute=*/0, 230 /*minute=*/0, 251 /*minute=*/0, 272 /*minute=*/0, 278 DateParseData::RelationType::MINUTE, [all...] |