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

1 2 3 4 56 7 8 91011>>

  /external/kernel-headers/original/linux/
mc146818rtc.h 76 # define RTC_24H 0x02 /* 24 hour mode - else hours bit 7 means pm */
  /frameworks/base/core/jni/
android_text_format_Time.cpp 76 sprintf(msg, "allDay is true but sec, min, hour are not 0.");
436 // hour
524 // hour
528 int hour = n; local
594 // hour
599 hour += n;
612 env->SetIntField(This, g_hourField, hour);
616 // we need to normalize after applying the hour and minute offsets
664 g_hourField = env->GetFieldID(timeClass, "hour", "I");
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmClock.java 74 SetAlarm.popAlarmSetToast(this, alarm.hour, alarm.minutes,
123 c.set(Calendar.HOUR_OF_DAY, alarm.hour);
184 SetAlarm.popAlarmSetToast(this, alarm.hour, alarm.minutes,
268 cal.set(Calendar.HOUR_OF_DAY, alarm.hour);
AlarmProvider.java 57 "hour INTEGER, " +
68 "(hour, minutes, daysofweek, alarmtime, enabled, vibrate, message, alert) " +
  /libcore/luni/src/main/java/java/util/
Calendar.java 33 * {@code HOUR}, and so on. (A {@code Date} object represents a
131 * AM_PM + HOUR</pre>
205 * A smaller field represents a smaller unit of time. {@code HOUR} is a
236 * a larger field than {@code HOUR}.
594 * whether the {@code HOUR} is before or after noon. E.g., at
599 * @see #HOUR
605 * hour of the morning or afternoon. {@code HOUR} is used for the
606 * 12-hour clock. E.g., at 10:04:15.250 PM the {@code HOUR} is 10
    [all...]
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java 187 int hour; field in class:CalendarUtilities.TimeZoneDate
191 static void putRuleIntoTimeZoneInformation(byte[] bytes, int offset, RRule rrule, int hour,
200 setWord(bytes, offset + MSFT_SYSTEMTIME_HOUR, hour);
255 int hour = getWord(bytes, offset + MSFT_SYSTEMTIME_HOUR); local
256 tzd.hour = hour;
259 tzd.time = (hour*HOURS) + (minute*MINUTES);
276 testCalendar.set(GregorianCalendar.HOUR_OF_DAY, tzd.hour);
660 // Write month, day of week, week, hour, minute
894 int hour = calendar.get(Calendar.HOUR_OF_DAY); local
    [all...]
  /external/v8/src/
date.js 265 function MakeTime(hour, min, sec, ms) {
266 if (!$isFinite(hour)) return $NaN;
270 return TO_INTEGER(hour) * msPerHour
954 function DateSetHours(hour, min, sec, ms) {
956 hour = ToNumber(hour);
961 var time = MakeTime(hour, min, sec, ms);
967 function DateSetUTCHours(hour, min, sec, ms) {
969 hour = ToNumber(hour);
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 46 private static final int HOUR = 5;
139 Date date = new Date(YEAR_FROM_1900, MONTH, DAY, HOUR, MINUTE);
  /external/chromium/third_party/icu/source/test/threadtest/
stringtest.cpp 49 "That struts and frets his hour upon the stage\n"
59 "That struts and frets his hour upon the stage\n"
  /external/icu4c/test/threadtest/
stringtest.cpp 49 "That struts and frets his hour upon the stage\n"
59 "That struts and frets his hour upon the stage\n"
  /packages/providers/CalendarProvider/
maketests.py 62 hour = int(m.group(4)) + (sign * int(m.group(8)))
63 return m.group(1) + m.group(2) + m.group(3) + "T" + fmt(hour) \
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/
jsref.js 540 function MakeTime( hour, min, sec, ms ) {
541 if ( isNaN( hour ) || isNaN( min ) || isNaN( sec ) || isNaN( ms ) ) {
545 hour = ToInteger(hour);
550 return( (hour*msPerHour) + (min*msPerMinute) +
shell.js 275 // Use our date arithmetic functions to determine the local hour, day, etc.
288 // Use our date arithmetic functions to determine the UTC hour, day, etc.
583 function MakeTime( hour, min, sec, ms ) {
584 if ( isNaN( hour ) || isNaN( min ) || isNaN( sec ) || isNaN( ms ) ) {
588 hour = ToInteger(hour);
593 return( (hour*msPerHour) + (min*msPerMinute) +
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/
jsref.js 501 function MakeTime( hour, min, sec, ms ) {
502 if ( isNaN( hour ) || isNaN( min ) || isNaN( sec ) || isNaN( ms ) ) {
506 hour = ToInteger(hour);
511 return( (hour*msPerHour) + (min*msPerMinute) +
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Date/
shell.js 531 function MakeTime( hour, min, sec, ms )
533 if ( isNaN(hour) || isNaN(min) || isNaN(sec) || isNaN(ms) ){return Number.NaN;}
535 hour = ToInteger(hour);
540 return( (hour*msPerHour) + (min*msPerMinute) + (sec*msPerSecond) + ms );
  /external/chromium/third_party/icu/source/test/intltest/
tzbdtest.cpp 225 * 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,
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/icu4c/test/intltest/
tzbdtest.cpp 225 * 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,
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/chromium/third_party/icu/public/i18n/unicode/
ucal.h 298 * whether the <code>HOUR</code> is before or after noon.
309 * hour of the morning or afternoon. <code>HOUR</code> is used for the 12-hour
311 * E.g., at 10:04:15.250 PM the <code>HOUR</code> is 10.
320 * hour of the day. <code>HOUR_OF_DAY</code> is used for the 24-hour clock.
329 * minute within the hour.
593 * 3,600,000 (one hour) or zero.
901 * @param hour The desired hour of day
    [all...]
  /external/chromium/third_party/icu/source/tools/tzcode/
icuzdump.cpp 64 int32_t hour, min, sec; local
70 hour = offset / 60;
72 decf->format(hour, appendTo);
  /external/icu4c/i18n/unicode/
ucal.h 299 * whether the <code>HOUR</code> is before or after noon.
310 * hour of the morning or afternoon. <code>HOUR</code> is used for the 12-hour
312 * E.g., at 10:04:15.250 PM the <code>HOUR</code> is 10.
321 * hour of the day. <code>HOUR_OF_DAY</code> is used for the 24-hour clock.
330 * minute within the hour.
594 * 3,600,000 (one hour) or zero.
921 * @param hour The desired hour of day
    [all...]
  /external/icu4c/tools/tzcode/
icuzdump.cpp 64 int32_t hour, min, sec; local
70 hour = offset / 60;
72 decf->format(hour, appendTo);
  /external/iptables/extensions/
libip6t_hashlimit.c 37 " /sec /minute /hour /day postfixes]\n"
77 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0)
258 { "hour", XT_HASHLIMIT_SCALE*60*60 },
libipt_hashlimit.c 37 " /sec /minute /hour /day postfixes]\n"
77 else if (strncasecmp(delim+1, "hour", strlen(delim+1)) == 0)
258 { "hour", IPT_HASHLIMIT_SCALE*60*60 },
  /bionic/libc/kernel/common/linux/
telephony.h 59 char hour[3]; member in struct:__anon467
  /development/ndk/platforms/android-3/include/linux/
telephony.h 59 char hour[3]; member in struct:__anon1092

Completed in 1727 milliseconds

1 2 3 4 56 7 8 91011>>