/external/ipsec-tools/src/racoon/samples/roadwarrior/server/ |
racoon.conf | 37 lifetime time 1 hour;
|
/frameworks/base/core/jni/ |
TimeUtils.h | 49 HOUR = 3, 69 inline void set(int sec, int min, int hour, int mday, int mon, int year, 74 this->t.tm_hour = hour;
|
/frameworks/base/media/libdrm/mobile1/include/objmng/ |
drm_inner.h | 26 #define INT_2_YMD_HMS(year, mon, day, date, hour, min, sec, time) do{\ 30 hour = time / 10000;\
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
videotext.h | 87 int hour; /* requested hour (hexadecimal) */ member in struct:__anon21086 108 int hour; /* hour (hexadecimal) */ member in struct:__anon21087
|
/external/icu4c/i18n/ |
wintzimpl.cpp | 62 int32_t hour, min, sec, mil; local 72 hour = mil/3600000; 79 standardDate.wHour = hour; 93 hour = mil/3600000; 100 daylightDate.wHour = hour;
|
/libcore/luni/src/main/java/java/util/ |
TimeZone.java | 47 * {@link #getDSTSavings DST savings} (usually, but not necessarily, 1 hour). 218 * The base implementation returns {@code 3600000} (1 hour) for time zones 308 int hour = parseNumber(formattedName, 4, position); local 309 if (hour < 0 || hour > 23) { 316 int raw = hour * 3600000; 323 } else if (hour >= 30 || index > 6) { 324 raw = (hour / 100 * 3600000) + (hour % 100 * 60000);
|
/external/webkit/Source/WebCore/html/ |
FTPDirectoryDocument.cpp | 208 int hour = fileTime.tm_hour; local 209 ASSERT(hour >= 0 && hour < 24); 211 if (hour < 12) { 212 if (hour == 0) 213 hour = 12; 214 timeOfDay = String::format(", %i:%02i AM", hour, fileTime.tm_min); 216 hour = hour - 12; 217 if (hour == 0 [all...] |
/external/icu4c/test/cintltst/ |
ccaltst.h | 84 int32_t hour, int32_t min, int32_t sec, int32_t am_pm);
|
/external/icu4c/test/intltest/ |
tzrulets.h | 48 int32_t hour=0, int32_t min=0, int32_t sec=0, int32_t msec=0);
|
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
os_win32.c | 55 int os_mktime(int year, int month, int day, int hour, int min, int sec, 63 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 || 71 tm.tm_hour = hour;
|
/external/wpa_supplicant_8/src/utils/ |
os_win32.c | 55 int os_mktime(int year, int month, int day, int hour, int min, int sec, 63 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 || 71 tm.tm_hour = hour;
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
HandleSetAlarm.java | 52 final int hour = intent.getIntExtra(EXTRA_HOUR, local 63 long timeInMillis = Alarms.calculateAlarm(hour, minutes, 69 Alarm.Columns.HOUR + "=" + hour + " AND " + 85 values.put(Alarm.Columns.HOUR, hour);
|
Alarm.java | 53 p.writeInt(hour); 77 * Hour in 24-hour localtime 0 - 23. 80 public static final String HOUR = "hour"; 129 HOUR + ", " + MINUTES + " ASC"; 135 _ID, HOUR, MINUTES, DAYS_OF_WEEK, ALARM_TIME, 159 public int hour; field in class:Alarm 171 hour = c.getInt(Columns.ALARM_HOUR_INDEX); 200 hour = p.readInt() [all...] |
/libcore/luni/src/main/java/java/sql/ |
Time.java | 31 * Constructs a {@code Time} object using the supplied values for <i>Hour</i>, 240 int hour = Integer.parseInt(timeString.substring(0, firstIndex)); local 245 return new Time(hour, minute, second);
|
/cts/tests/tests/text/src/android/text/format/cts/ |
TimeTest.java | 145 assertEquals(time.hour, anotherTime.hour); 402 || local.monthDay != test.day2 || local.hour != test.hour2 407 local.year, local.month, local.monthDay, local.hour, local.minute); 420 || local.monthDay != test.day2 || local.hour != test.hour2 425 local.year, local.month, local.monthDay, local.hour, local.minute); 443 || local.monthDay != test.day2 || local.hour != test.hour2 449 local.year, local.month, local.monthDay, local.hour, local.minute, 465 || local.monthDay != test.day2 || local.hour != test.hour2 471 local.year, local.month, local.monthDay, local.hour, local.minute 702 final int hour = 16; local [all...] |
/libcore/luni/src/main/java/javax/xml/datatype/ |
DatatypeFactory.java | 145 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively. 147 * year, month, day, hour, minute, and second. 174 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively. 176 * year, month, day, hour, minute, and second. 309 * whose lexical representation contains only day, hour, minute, and second components. 349 * whose lexical representation contains only day, hour, minute, and second components. 371 * <p>Any remaining milliseconds after determining the day, hour, minute and second are discarded.</p> 408 int minutes = (int) (val % 60L); // 60 minutes per hour 425 BigInteger minutes = BigInteger.valueOf(val % 60L); // 60 minutes per hour 435 * <code>day</code>, <code>hour</code>, <code>minute</code> and <code>second</code> as defined i [all...] |
/frameworks/base/core/java/android/text/format/ |
Time.java | 51 * True if this is an allDay event. The hour, minute, second fields are 67 * Hour of day [0-23] 69 public int hour; field in class:Time 122 public static final int HOUR = 3; 222 * @param field one of the constants for HOUR, MINUTE, SECOND, etc. 231 case HOUR: 273 this.hour = 0; 292 * hour}, {@code minute}, and {@code second} are not 0. 417 * field of this Time class is set to true and the <code>hour</code>, 471 * the {@link #allDay} field is set to true and the {@link #hour}, [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
CalendarTest.java | 63 * drop an hour to keep the hour+minute constant unless that prevents the 107 calendar.add(Calendar.HOUR, 24); 146 int hour = 0; local 150 calendar.set(year, month, day, hour, minute); 154 assertEquals(hour, calendar.get(Calendar.HOUR_OF_DAY)); 193 int year, int month, int day, int hour, int minute) { 197 assertEquals(hour, calendar.get(Calendar.HOUR_OF_DAY));
|
/libcore/luni/src/main/java/java/text/ |
SimpleDateFormat.java | 67 * <tr> <td>{@code H}</td> <td>hour in day (0-23)</td> <td>(Number)</td> <td>0</td> </tr> 68 * <tr> <td>{@code K}</td> <td>hour in am/pm (0-11)</td> <td>(Number)</td> <td>0</td> </tr> 77 * <tr> <td>{@code h}</td> <td>hour in am/pm (1-12)</td> <td>(Number)</td> <td>12</td> </tr> 78 * <tr> <td>{@code k}</td> <td>hour in day (1-24)</td> <td>(Number)</td> <td>24</td> </tr> 79 * <tr> <td>{@code m}</td> <td>minute in hour</td> <td>(Number)</td> <td>30</td> </tr> 627 int hour = calendar.get(Calendar.HOUR_OF_DAY); local 628 appendNumber(buffer, count, hour == 0 ? 24 : hour); 677 hour = calendar.get(Calendar.HOUR); [all...] |
/external/chromium/chrome/browser/chromeos/status/ |
power_menu_button.cc | 79 int hour = time.InHours(); local 80 int min = (time - base::TimeDelta::FromHours(hour)).InMinutes(); 81 string16 hour_str = base::IntToString16(hour);
|
/external/chromium/base/ |
time.cc | 93 exploded.hour = 0; 126 is_in_range(hour, 0, 23) &&
|
/external/iptables/extensions/ |
libxt_time.c | 90 unsigned int month = 1, day = 1, hour = 0, minute = 0, second = 0; local 118 hour = strtoul(s, &e, 10); 119 if ((*e != ':' && *e != '\0') || hour > 23) 140 tm.tm_hour = hour; 164 unsigned int hour, minute, second = 0; local 167 hour = strtoul(s, &e, 10); 168 if (*e != ':' || hour > 23) 184 return 60 * 60 * hour + 60 * minute + second;
|
/frameworks/base/core/java/android/app/ |
TimePickerDialog.java | 47 * @param hourOfDay The hour that was set. 53 private static final String HOUR = "hour"; 67 * @param hourOfDay The initial hour. 69 * @param is24HourView Whether this is a 24 hour view, or AM/PM. 81 * @param hourOfDay The initial hour. 83 * @param is24HourView Whether this is a 24 hour view, or AM/PM. 136 state.putInt(HOUR, mTimePicker.getCurrentHour()); 145 int hour = savedInstanceState.getInt(HOUR); local [all...] |
/frameworks/base/media/libdrm/mobile1/src/parser/ |
parser_rel.c | 52 int32_t hour, int32_t min, int32_t sec) 56 hour >= 0 && hour <= 23 && 66 int32_t year, mon, day, hour, min, sec; local 105 /** get hour */ 111 hour = atoi((char *)pHead); 128 if (0 != drm_checkDate(year, mon, day, hour, min, sec)) 131 YMD_HMS_2_INT(year, mon, day, dateTime->date, hour, min, sec, 238 int32_t year, mon, day, hour, min, sec; local 374 /** get hour */ [all...] |
/external/webkit/Source/JavaScriptCore/wtf/ |
DateMath.cpp | 316 static inline double timeToMS(double hour, double min, double sec, double ms) 318 return (((hour * minutesPerHour + min) * secondsPerMinute + sec) * msPerSecond + ms); 490 static inline double ymdhmsToSeconds(long year, int mon, int day, int hour, int minute, double second) 497 return ((days * hoursPerDay + hour) * minutesPerHour + minute) * secondsPerMinute + second; 850 long hour = 0; local 860 // There was no year; the number was the hour. 868 parseLong(dateString, &newPosStr, 10, &hour); 877 if (hour < 0 || hour > 23) 913 if (hour > 12 [all...] |