/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 | 66 SetAlarm.popAlarmSetToast(this, alarm.hour, alarm.minutes, 110 c.set(Calendar.HOUR_OF_DAY, alarm.hour); 171 SetAlarm.popAlarmSetToast(this, alarm.hour, alarm.minutes, 262 cal.set(Calendar.HOUR_OF_DAY, alarm.hour);
|
/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...] |
/external/v8/src/ |
date.js | 279 function MakeTime(hour, min, sec, ms) { 280 if (!$isFinite(hour)) return $NaN; 284 return TO_INTEGER(hour) * msPerHour 840 function DateSetHours(hour, min, sec, ms) { 842 hour = ToNumber(hour); 847 var time = MakeTime(hour, min, sec, ms); 853 function DateSetUTCHours(hour, min, sec, ms) { 855 hour = ToNumber(hour); [all...] |
/external/chromium/base/ |
time.cc | 93 exploded.hour = 0; 126 is_in_range(hour, 0, 23) &&
|
/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/Source/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/Source/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/Source/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 );
|
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaListView.java | 120 long runInMillis = (24 * 3600 - time.hour * 3600 - time.minute * 60 - 297 int hour = t.hour; local 301 t.hour = hour;
|
/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/chrome/browser/ui/views/ |
about_ipc_dialog.cc | 310 if (exploded.hour > 12) 311 exploded.hour -= 12; 314 exploded.hour, exploded.minute, exploded.second, exploded.millisecond);
|
/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);
|
/bionic/libc/kernel/common/linux/ |
telephony.h | 59 char hour[3]; member in struct:__anon495
|
/bionic/libc/tzcode/ |
strptime.c | 268 case 'k': /* The hour (24-hour clock representation). */ 277 case 'l': /* The hour (12-hour clock representation). */
|
/development/ndk/platforms/android-3/include/linux/ |
telephony.h | 59 char hour[3]; member in struct:__anon1110
|
/external/chromium/chrome/common/ |
thumbnail_score.h | 83 // Penalty of how much more boring a thumbnail should be per hour.
|
/external/chromium/net/base/ |
x509_cert_types.cc | 111 exploded.hour = ParseIntAndAdvance(&field, 2, &valid);
|
/external/emma/lib/internal/ |
stamptool.jar | |
/external/icu4c/i18n/ |
zonemeta.cpp | 128 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, n; local 163 hour = 10*hour + n; 181 + hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE;
|
/external/ipsec-tools/src/racoon/samples/ |
racoon.conf.sample-natt | 93 lifetime time 12 hour;
|
/external/jsilver/src/org/clearsilver/jni/ |
JniHdf.java | 228 setValue(hdfname + ".24hour", 231 setValue(hdfname + ".hour", 233 cal.get(Calendar.HOUR) == 0 ? 12 : cal.get(Calendar.HOUR)));
|