Searched refs:hour (Results 51 - 75 of 157) sorted by relevance

1234567

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DPersianCalendar.java237 * @param hour the value used to set the {@link #HOUR_OF_DAY HOUR_OF_DAY} time field
249 public PersianCalendar(int year, int month, int date, int hour, argument
256 this.set(Calendar.HOUR_OF_DAY, hour);
H A DGregorianCalendar.java135 * System.out.println("Current Time, with hour reset to 3");
421 * @param hour the value used to set the HOUR_OF_DAY time field
428 public GregorianCalendar(int year, int month, int date, int hour, argument
435 set(HOUR_OF_DAY, hour);
446 * @param hour the value used to set the HOUR_OF_DAY time field
455 public GregorianCalendar(int year, int month, int date, int hour, argument
462 set(HOUR_OF_DAY, hour);
H A DChineseCalendar.java190 * @param hour the value used to set the {@link #HOUR_OF_DAY HOUR_OF_DAY} time field
199 public ChineseCalendar(int year, int month, int isLeapMonth, int date, int hour, argument
215 this.set(HOUR_OF_DAY, hour);
250 * @param hour the value used to set the {@link #HOUR_OF_DAY HOUR_OF_DAY} time field
259 public ChineseCalendar(int era, int year, int month, int isLeapMonth, int date, int hour, argument
273 this.set(HOUR_OF_DAY, hour);
H A DHebrewCalendar.java392 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field.
400 public HebrewCalendar(int year, int month, int date, int hour, argument
407 this.set(HOUR_OF_DAY, hour);
568 // "parts" (or halakim), which are 1/1080 of an hour, or 3 1/3 seconds.
H A DIndianCalendar.java273 * @param hour The value used to set the calendar's {@link #HOUR_OF_DAY HOUR_OF_DAY} time field.
281 public IndianCalendar(int year, int month, int date, int hour, argument
288 this.set(Calendar.HOUR_OF_DAY, hour);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DHeaderParser.java129 * Set the time field. This has the format hour:minute:second
134 int hour = Integer.parseInt(s);
135 calendar.set(Calendar.HOUR_OF_DAY, hour);
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
H A Ddatetime_utils.py27 'year', 'month', 'week', 'day', 'hour', 'minute', 'second',
56 hour = timedelta(hours=1) variable
/external/icu/icu4c/source/common/
H A Drbbicst.pl228 my ($sec, $min, $hour, , $day, $mon, $year, $wday, $yday, $isdst) = localtime;
/external/libxml2/include/libxml/
H A Dnanoftp.h54 * @hour: the hour
64 const char *month, int day, int hour,
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_none.c35 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
H A Dos_unix.c101 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
109 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
117 tm.tm_hour = hour;
151 tm->hour = tm2->tm_hour;
/external/wpa_supplicant_8/src/utils/
H A Dos_none.c35 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
H A Dos_unix.c101 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
109 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
117 tm.tm_hour = hour;
151 tm->hour = tm2->tm_hour;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_none.c35 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
H A Dos_unix.c101 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
109 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
117 tm.tm_hour = hour;
151 tm->hour = tm2->tm_hour;
/external/icu/icu4c/source/i18n/
H A Dzonemeta.cpp160 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, n; local
195 hour = 10*hour + n;
213 + hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE;
844 int32_t hour, min, sec; local
850 hour = tmp / 60;
853 formatCustomID(hour, min, sec, negative, zid);
858 ZoneMeta::formatCustomID(uint8_t hour, uint8_t min, uint8_t sec, UBool negative, UnicodeString& id) { argument
861 if (hour != 0 || min != 0) {
868 id.append((UChar)(0x30 + (hour
[all...]
H A Dtzfmt.cpp1818 // forcing parse to use single hour digit
1827 // Better parse result with single hour digit
1846 UVector* patternItems, UBool forceSingleHourDigit, int32_t& hour, int32_t& min, int32_t& sec) const {
1883 hour = min = sec = 0;
1887 hour = offsetH;
1920 int32_t hour = 0;
1927 hour = digits[0];
1930 hour = digits[0] * 10 + digits[1];
1933 hour = digits[0];
1937 hour
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dtzbdtest.cpp225 * Check that the given year/month/dom/hour maps to and from the
233 void TimeZoneBoundaryTest::verifyMapping(Calendar& cal, int year, int month, int dom, int hour, argument
238 cal.set(year, month, dom, hour, 0, 0);
242 logln(UnicodeString("Ok: ") + year + "/" + (month+1) + "/" + dom + " " + hour + ":00 => " +
245 dataerrln(UnicodeString("FAIL: ") + year + "/" + (month+1) + "/" + dom + " " + hour + ":00 => " +
253 cal.get(UCAL_MILLISECONDS_IN_DAY, status) == hour * 3600000) {
266 " " + hour); local
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
H A DTimeZoneBoundaryTest.java292 * Check that the given year/month/dom/hour maps to and from the
300 void verifyMapping(Calendar cal, int year, int month, int dom, int hour, argument
304 cal.set(year, month, dom, hour, 0, 0);
309 logln("Ok: " + year + "/" + (month+1) + "/" + dom + " " + hour + ":00 => " +
312 errln("FAIL: " + year + "/" + (month+1) + "/" + dom + " " + hour + ":00 => " +
320 cal.get(Calendar.MILLISECONDS_IN_DAY) == hour * 3600000) {
333 " " + hour);
347 // void verifyMapping(java.util.Calendar cal, int year, int month, int dom, int hour,
350 // cal.set(year, month, dom, hour, 0, 0);
355 // logln("Ok: " + year + "/" + (month+1) + "/" + dom + " " + hour
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dicuzdump.cpp64 int32_t hour, min, sec; local
70 hour = offset / 60;
72 decf->format(hour, appendTo);
/external/v8/src/
H A Ddateparser-inl.h278 int hour = hourmin / 100; local
280 if (!TimeComposer::IsHour(hour) || !TimeComposer::IsMinute(min)) {
283 tz->SetAbsoluteHour(hour);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DTimeZoneFormat.java1931 * Initialize localized GMT format offset hour/min/sec patterns.
2010 * pattern literal) or GMTOffsetField (hour/min/sec field)
2110 * Appends seconds field to the offset pattern with hour/minute
2115 //TODO This code will be obsoleted once we add hour-minute-second pattern data in CLDR
2119 throw new RuntimeException("Bad time zone hour pattern data");
2130 * Truncates minutes field from the offset pattern with hour/minute
2135 //TODO This code will be obsoleted once we add hour pattern data in CLDR
2139 throw new RuntimeException("Bad time zone hour pattern data");
2149 throw new RuntimeException("Bad time zone hour pattern data");
2347 // forcing parse to use single hour digi
[all...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDateTest.java99 static private long getTime(int year, int month, int date, int hour, argument
101 aCal.set(year, month, date, hour, minute, second);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
H A Dindex.php75 $hour = substr($timePart,8,2); variable
77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
/external/icu/icu4c/source/i18n/unicode/
H A Dtimezone.h523 * typically one hour.
778 * (i.e., one hour) if this time zone observes Daylight Saving
905 * @param hour Receives parsed hour field
910 static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour,
928 * @param hour offset hours
935 static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec,

Completed in 791 milliseconds

1234567