HomeSort by relevance Sort by last modified time
    Searched defs:hour (Results 126 - 150 of 388) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/text/
SimpleDateFormat.java 394 * <th rowspan="4">hour</th>
398 * <td>Hour [1-12]. When used in skeleton data or in a skeleton passed in an API for flexible data pattern
399 * generation, it should match the 12-hour-cycle format preferred by the locale (h or K); it should not match
400 * a 24-hour-cycle format (H or k). Use hh for zero padding.</td>
406 * <td>Hour [0-23]. When used in skeleton data or in a skeleton passed in an API for flexible data pattern
407 * generation, it should match the 24-hour-cycle format preferred by the locale (H or k); it should not match a
408 * 12-hour-cycle format (h or K). Use HH for zero padding.</td>
414 * <td>Hour [0-11]. When used in a skeleton, only matches K or h, see above. Use KK for zero padding.</td>
420 * <td>Hour [1-24]. When used in a skeleton, only matches k or H, see above. Use kk for zero padding.</td>
665 * the "hour in am/pm" pattern symbol is used. This information loss ca
1892 int hour = cal.get(Calendar.HOUR_OF_DAY); local
1938 int hour = cal.get(Calendar.HOUR_OF_DAY); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
IBMCalendarTest.java 163 // a reference throws us off by one hour. This is most likely
280 // new BuddhistCalendar(int year, int month, int date, int hour, int minute, int second)
283 errln("could not create BuddhistCalendar with year,month,date,hour,minute,second");
433 // new TaiwanCalendar(int year, int month, int date, int hour, int minute, int second)
436 errln("could not create TaiwanCalendar with year,month,date,hour,minute,second");
636 * different day. The DST adjustments we use to keep the hour
1190 private int hour; field in class:IBMCalendarTest.CalFields
1249 int hour = cal.get(Calendar.HOUR_OF_DAY); local
    [all...]
  /external/icu/icu4c/source/i18n/
smpdtfmt.cpp 1827 int32_t hour = cal.get(UCAL_HOUR_OF_DAY, status); local
1884 int32_t hour = cal.get(UCAL_HOUR_OF_DAY, status); local
    [all...]
vtzone.cpp 202 int32_t hour = t / U_MILLIS_PER_HOUR; local
208 appendAsciiDigits(hour, 2, str);
232 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; local
257 hour = parseAsciiDigits(str, 9, 2, status);
268 hour < 0 || hour >= 24 || min < 0 || min >= 60 || sec < 0 || sec >= 60) {
281 time += (hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE + sec * U_MILLIS_PER_SECOND);
297 int32_t sign = 0, hour = 0, min = 0, sec = 0; local
315 hour = parseAsciiDigits(str, 1, 2, status);
330 int32_t millis = sign * ((hour * 60 + min) * 60 + sec) * 1000
345 int32_t hour, min, sec; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SimpleDateFormat.java 393 * <th rowspan="4">hour</th>
397 * <td>Hour [1-12]. When used in skeleton data or in a skeleton passed in an API for flexible data pattern
398 * generation, it should match the 12-hour-cycle format preferred by the locale (h or K); it should not match
399 * a 24-hour-cycle format (H or k). Use hh for zero padding.</td>
405 * <td>Hour [0-23]. When used in skeleton data or in a skeleton passed in an API for flexible data pattern
406 * generation, it should match the 24-hour-cycle format preferred by the locale (H or k); it should not match a
407 * 12-hour-cycle format (h or K). Use HH for zero padding.</td>
413 * <td>Hour [0-11]. When used in a skeleton, only matches K or h, see above. Use KK for zero padding.</td>
419 * <td>Hour [1-24]. When used in a skeleton, only matches k or H, see above. Use kk for zero padding.</td>
664 * the "hour in am/pm" pattern symbol is used. This information loss ca
1902 int hour = cal.get(Calendar.HOUR_OF_DAY); local
1948 int hour = cal.get(Calendar.HOUR_OF_DAY); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
IBMCalendarTest.java 160 // a reference throws us off by one hour. This is most likely
277 // new BuddhistCalendar(int year, int month, int date, int hour, int minute, int second)
280 errln("could not create BuddhistCalendar with year,month,date,hour,minute,second");
430 // new TaiwanCalendar(int year, int month, int date, int hour, int minute, int second)
433 errln("could not create TaiwanCalendar with year,month,date,hour,minute,second");
633 * different day. The DST adjustments we use to keep the hour
1187 private int hour; field in class:IBMCalendarTest.CalFields
1246 int hour = cal.get(Calendar.HOUR_OF_DAY); local
    [all...]
  /external/libxml2/
xmlschemastypes.c 70 unsigned int hour :5; /* 0 <= hour <= 24 */ member in struct:_xmlSchemaValDate
84 double sec; /* sec stores min and hour also */
5875 unsigned long mon, day, hour = 0, min = 0; local
    [all...]
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java 1174 final int hour = tryParseInt(value.substring(0, i), -1); local
    [all...]
  /frameworks/base/core/java/android/widget/
RadialTimePickerView.java 164 * When in 24-hour mode, indicates that the current hour is between
206 * @param newValue the new value as minute in hour (0-59) or hour in
445 public void initialize(int hour, int minute, boolean is24HourMode) {
451 setCurrentHourInternal(hour, false, false);
477 * Sets the current hour in 24-hour time.
479 * @param hour the current hour between 0 and 23 (inclusive
525 int hour = (degrees \/ DEGREES_FOR_ONE_HOUR) % 12; local
1156 final int hour = mIs24HourMode ? hour24 : hour24To12(hour24); local
1278 final int hour = mIs24HourMode ? value : hour12To24(value, mAmOrPm); local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
BearerData.java 249 int hour = IccUtils.cdmaBcdByteToInt(data[3]); local
250 if (hour < 0 || hour > 23) return null;
251 ts.hour = hour;
268 builder.append(", hour=" + hour);
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKLocalTime.java 1530 int hour = 0; local
1539 assertEquals(t.getHour(), hour); local
1547 int hour; local
1564 assertEquals(t.getHour(), hour); local
1606 int hour = 0; local
1620 assertEquals(t.getHour(), hour); local
1631 int hour = 22; local
1707 int hour = 0; local
1726 assertEquals(t.getHour(), hour); local
1738 int hour = 22; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 408 "hour must be in 0..23");
574 int *hour, int *minute, int *second,
579 normalize_pair(hour, minute, 60);
580 normalize_pair(day, hour, 24);
671 new_datetime_ex(int year, int month, int day, int hour, int minute,
681 DATE_SET_HOUR(self, hour);
699 new_time_ex(int hour, int minute, int second, int usecond,
709 TIME_SET_HOUR(self, hour);
1939 PyObject *hour = NULL; local
3146 int hour = 0; local
3413 int hour; local
3676 int hour = 0; local
4079 int hour = DATE_GET_HOUR(date); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 408 "hour must be in 0..23");
574 int *hour, int *minute, int *second,
579 normalize_pair(hour, minute, 60);
580 normalize_pair(day, hour, 24);
671 new_datetime_ex(int year, int month, int day, int hour, int minute,
681 DATE_SET_HOUR(self, hour);
699 new_time_ex(int hour, int minute, int second, int usecond,
709 TIME_SET_HOUR(self, hour);
1939 PyObject *hour = NULL; local
3146 int hour = 0; local
3413 int hour; local
3676 int hour = 0; local
4079 int hour = DATE_GET_HOUR(date); local
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_format.h 668 uint16_t hour; member in struct:__anon20870
    [all...]
  /external/icu/icu4c/source/test/intltest/
dtfmttst.cpp 387 int32_t hour = 2 + (defaultOffset - PSTOffset) / (60*60*1000); local
388 // hour is the expected hour of day, in units of seconds
389 hour = ((hour < 0) ? hour + 24 : hour) * 60*60;
402 hour += defaultTZ->inDaylightTime(d, status) ? 1 : 0;
404 if (hr != hour)
405 errln((UnicodeString)"FAIL: Should parse to hour " + hour + " but got " + hr)
907 int32_t year,month,day,hour,min,sec; dateToFields(today,year,month,day,hour,min,sec); local
4247 int32_t hour; member in struct:__anon21702
    [all...]
  /external/libpng/
png.h 636 png_byte hour; /* hour of day, 0 - 23 */ member in struct:png_time_struct
637 png_byte minute; /* minute of hour, 0 - 59 */
    [all...]
  /external/pdfium/third_party/libpng16/
png.h 641 png_byte hour; /* hour of day, 0 - 23 */ member in struct:png_time_struct
642 png_byte minute; /* minute of hour, 0 - 59 */
    [all...]
  /external/python/cpython2/Modules/
datetimemodule.c 408 "hour must be in 0..23");
574 int *hour, int *minute, int *second,
579 normalize_pair(hour, minute, 60);
580 normalize_pair(day, hour, 24);
671 new_datetime_ex(int year, int month, int day, int hour, int minute,
681 DATE_SET_HOUR(self, hour);
699 new_time_ex(int hour, int minute, int second, int usecond,
709 TIME_SET_HOUR(self, hour);
1939 PyObject *hour = NULL; local
3146 int hour = 0; local
3413 int hour; local
3676 int hour = 0; local
4079 int hour = DATE_GET_HOUR(date); local
    [all...]
  /external/syslinux/com32/include/
png.h 739 png_byte hour; \/* hour of day, 0 - 23 *\/ member in struct:png_time_struct
    [all...]
  /external/wpa_supplicant_8/src/common/
dpp.c 3708 unsigned int year, month, day, hour, min, sec; local
    [all...]
  /hardware/ril/include/telephony/
ril_cdma_sms.h 628 unsigned char hour; /* 0x00-0x23 */ member in struct:__anon52847
  /libcore/ojluni/src/main/java/java/time/format/
DateTimeFormatterBuilder.java 3268 int hour = newContext.getParsed(HOUR_OF_DAY).intValue(); local
    [all...]
  /external/ImageMagick/coders/
png.c 7851 hour, local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Calendar.java 38 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
138 * AM_PM + HOUR</pre>
152 * hour at 2:00 AM. So wall clock time from 1:00 AM to 1:59 AM occur twice. In this
228 * smaller unit of time. <code>HOUR</code> is a smaller field than
259 * <code>HOUR</code>.</p>
558 * {@link #HOUR}, {@link #HOUR_OF_DAY}, {@link #MINUTE},
5295 int hour = Math.abs(internalGet(HOUR_OF_DAY)); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatTest.java 115 {DateFormat.HOUR, "j", "en", "h a"}, // (fixed expected result per ticket 6872<-6626)
311 * So it need to add the timezone offset on hour field.
320 int hour = 2 + (defaultOffset - PSTOffset) / (60*60*1000); local
321 // hour is the expected hour of day, in units of seconds
322 hour = ((hour < 0) ? hour + 24 : hour) * 60*60;
328 hour += defaultTZ.inDaylightTime(d) ? 1 : 0
4298 public int hour; field in class:DateFormatTest.CalAndFmtTestItem
    [all...]

Completed in 812 milliseconds

1 2 3 4 56 7 8 91011>>