/external/icu4c/test/intltest/ |
tzoffloc.cpp | 44 const int32_t HOUR = 60*60*1000; 48 {2006, UCAL_APRIL, 2, 1, 30, 1*HOUR+30*MINUTE}, 49 {2006, UCAL_APRIL, 2, 2, 00, 2*HOUR}, 50 {2006, UCAL_APRIL, 2, 2, 30, 2*HOUR+30*MINUTE}, 51 {2006, UCAL_APRIL, 2, 3, 00, 3*HOUR}, 52 {2006, UCAL_APRIL, 2, 3, 30, 3*HOUR+30*MINUTE}, 53 {2006, UCAL_OCTOBER, 29, 0, 30, 0*HOUR+30*MINUTE}, 54 {2006, UCAL_OCTOBER, 29, 1, 00, 1*HOUR}, 55 {2006, UCAL_OCTOBER, 29, 1, 30, 1*HOUR+30*MINUTE}, 56 {2006, UCAL_OCTOBER, 29, 2, 00, 2*HOUR}, [all...] |
tzrulets.cpp | 31 #define HOUR (60*60*1000) 153 SimpleTimeZone stz(-1*HOUR, "TestSTZ", 154 UCAL_SEPTEMBER, -30, -UCAL_SATURDAY, 1*HOUR, SimpleTimeZone::WALL_TIME, 155 UCAL_FEBRUARY, 2, UCAL_SUNDAY, 1*HOUR, SimpleTimeZone::WALL_TIME, 156 1*HOUR, status); 167 -1*HOUR, // Raw offset 168 1*HOUR); // DST saving amount 173 1*HOUR, DateTimeRule::WALL_TIME); // SUN<=30 in September, at 1AM wall time 175 -1*HOUR /*rawOffset*/, 1*HOUR /*dstSavings*/, dtr [all...] |
/packages/wallpapers/Basic/res/xml/ |
polar_clock_palettes.xml | 18 second="#FFCC8800" minute="#FF333333" hour="#FF000000" 24 second="#FF602070" minute="#603050" hour="#FF040008" 30 second="#FF00FF00" minute="#FF00BB00" hour="#FF007700" 36 second="#FFFFFF00" minute="#FFFF8800" hour="#FFFF8800" 42 second="#FF8aCCCF" minute="#FFCB9292" hour="#FFCCDC90" 48 second="#FF6666FF" minute="#FF0000FF" hour="#FF0000AA"
|
/external/icu4c/test/compat/ |
tzone.pl | 8 print "Usage: tzone [year month day hour minute]\n"; 21 my $hour = 0; 26 ($year, $month, $day, $hour, $minute) = @ARGV; 27 print "The date we are using is: $month-$day-$year $hour:$minute.\n"; 52 my @result = `./tzdate $year $month $day $hour $minute $USECURRENT`;
|
tzdate.c | 32 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime); 39 int year, month, day, hour, minute; local 54 hour = atoi(argv[4]); 61 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime); 109 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) { 122 ts.tm_hour = hour;
|
/external/ipsec-tools/src/racoon/samples/ |
racoon.conf.sample-inherit | 38 lifetime time 1 min; # sec,min,hour 51 lifetime time 12 hour;
|
racoon.conf.sample | 29 lifetime time 24 hour ; # sec,min,hour 57 lifetime time 12 hour ;
|
racoon.conf.sample-gssapi | 19 lifetime time 24 hour; 38 lifetime time 2 hour;
|
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/ |
DateTime.java | 37 private final int hour;
field in class:DateTime 42 public DateTime(String yearString, int month, int day, int hour, int minute, int second, int timeZone) {
44 this.date = convertToDate(year, month, day, hour, minute, second, timeZone);
47 this.hour = hour;
69 public static Date convertToDate(int year, int month, int day, int hour, int minute, int second, int timeZone) {
71 c.set(year, month - 1, day, hour, minute, second);
99 return hour;
|
/external/chromium/net/ftp/ |
ftp_directory_listing_parser_unittest.h | 27 int hour; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData 57 EXPECT_EQ(test_case.hour, time_exploded.hour); 68 mock_current_time_exploded.hour = 12;
|
ftp_directory_listing_parser_windows.cc | 51 if (!base::StringToInt(time_parts[0], &time_exploded.hour)) 59 if (time_exploded.hour < 12) 60 time_exploded.hour += 12; 62 if (time_exploded.hour == 12) 63 time_exploded.hour = 0;
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/server/ |
racoon.conf | 37 lifetime time 1 hour;
|
racoon.conf-radius | 37 lifetime time 1 hour;
|
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/ |
SunCalculator.java | 82 int hour = (int) Math.floor(time); local 83 int minute = (int) Math.round((time - hour) * 60); 85 hour++; 87 return hour; 91 int hour = (int) Math.floor(time); local 92 int minute = (int) Math.round((time - hour) * 60); 100 int hour = (int) Math.floor(time); local 101 int minute = (int) Math.round((time - hour) * 60); 104 hour++; 106 return (hour * 60 + minute) / 1440.0f 111 int hour = (int) Math.floor(time); local [all...] |
/external/iptables/extensions/ |
libxt_limit.man | 10 \fB\-\-limit\fP \fIrate\fP[\fB/second\fP|\fB/minute\fP|\fB/hour\fP|\fB/day\fP] 12 `/second', `/minute', `/hour', or `/day' suffix; the default is 13 3/hour.
|
/libcore/luni/src/main/java/java/util/ |
Date.java | 85 * @param hour 86 * the hour of day, 0 - 23. 88 * the minute of the hour, 0 - 59. 94 public Date(int year, int month, int day, int hour, int minute) { 96 cal.set(1900 + year, month, day, hour, minute); 110 * @param hour 111 * the hour of day, 0 - 23. 113 * the minute of the hour, 0 - 59. 121 public Date(int year, int month, int day, int hour, int minute, int second) { 123 cal.set(1900 + year, month, day, hour, minute, second) 380 int hour = -1, minute = -1, second = -1, zoneOffset = 0, minutesOffset = 0; local [all...] |
/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/include/parser/ |
parser_rel.h | 43 #define YMD_HMS_2_INT(year, mon, day, date, hour, min, sec, time) do{\ 45 time = hour * 10000 + min * 100 + sec;\ 55 int32_t time; /**< hour * 10000 + min *100 + sec */ 96 * \param hour hour of the time 103 int32_t drm_checkDate(int32_t year, int32_t month, int32_t day, int32_t hour, int32_t min, int32_t sec);
|
/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);
|
/external/chromium/base/i18n/ |
time_formatting.h | 18 // Argument type used to specify the hour clock type. 27 // Returns the time of day in the specified hour clock type. e.g. 51 // Gets the hour clock type of the current locale. e.g.
|
/external/chromium/chrome/common/extensions/docs/examples/api/notifications/ |
background.html | 19 var hour = time[1] % 12 || 12; // The prettyprinted hour. 23 hour + time[2] + ' ' + period, // The title.
|
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/ |
racoon.conf | 29 lifetime time 1 hour;
|
/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;
|
/system/core/toolbox/ |
date.c | 14 int hour; local 25 hour = atoi(s); 30 tm.tm_hour = hour / 10000; 31 tm.tm_min = (hour % 10000) / 100; 32 tm.tm_sec = (hour % 100);
|
/external/webkit/Source/WebCore/html/ |
DateComponents.cpp | 169 static bool withinHTMLDateLimits(int year, int month, int monthDay, int hour, int minute, int second, int millisecond) 182 return !hour && !minute && !second && !millisecond; 262 int hour = m_hour + carry; local 263 if (hour > 23) { 264 carry = hour / 24; 265 hour = hour % 24; 266 } else if (hour < 0) { 267 carry = (23 - hour) / 24; 268 hour += carry * 24 307 int hour; local 410 int hour; local [all...] |