Searched refs:hour (Results 1 - 25 of 160) sorted by relevance

1234567

/external/icu4c/test/compat/
H A Dtzone.pl8 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`;
H A Dtzdate.c32 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) { argument
122 ts.tm_hour = hour;
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser_windows.cc51 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;
H A Dftp_directory_listing_parser_unittest.h27 int hour; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData
57 EXPECT_EQ(test_case.hour, time_exploded.hour);
68 mock_current_time_exploded.hour = 12;
H A Dftp_directory_listing_parser_unittest.cc77 mock_current_time_exploded.hour = 12;
114 int year, month, day_of_month, hour, minute; local
118 base::StringToInt(lines[8 * i + 6], &hour);
141 EXPECT_EQ(hour, time_exploded.hour);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPDateTimeImpl.java38 private int hour = 0; field in class:XMPDateTimeImpl
83 this.hour = intCalendar.get(Calendar.HOUR_OF_DAY);
105 this.hour = calendar.get(Calendar.HOUR_OF_DAY);
206 return hour;
213 public void setHour(int hour) argument
215 this.hour = Math.min(Math.abs(hour), 23);
322 calendar.set(Calendar.HOUR_OF_DAY, hour);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPDateTime.java25 * <li> hour - The time zone hour in the range 0..23.
55 /** @return Returns hour - The hour in the range 0..23. */
58 /** @param hour Sets the hour in the range 0..23. */
59 void setHour(int hour); argument
H A DXMPDateTimeFactory.java58 * @param hour hours
65 int hour, int minute, int second, int nanoSecond)
71 dt.setHour(hour);
64 create(int year, int month, int day, int hour, int minute, int second, int nanoSecond) argument
/external/webkit/Source/WebCore/html/
H A DDateComponents.cpp169 static bool withinHTMLDateLimits(int year, int month, int monthDay, int hour, int minute, int second, int millisecond) argument
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
307 int hour; local
410 int hour; local
[all...]
H A DFTPDirectoryDocument.cpp208 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
[all...]
/external/v8/src/
H A Ddateparser.cc94 int& hour = comp_[0]; local
100 if (!IsHour12(hour)) return false;
101 hour %= 12;
102 hour += hour_offset_;
105 if (!IsHour(hour) || !IsMinute(minute) ||
108 output->set(HOUR, Smi::FromInt(hour));
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPDate.java116 /** hour member
118 protected int hour; field in class:SIPDate
143 this.hour == other.hour &&
156 hour = -1;
246 hour = javaCal.get(Calendar.HOUR_OF_DAY);
264 if (hour < 10) {
265 hourString = "0" + hour;
267 hourString = "" + hour;
329 /** get the hour
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DDateConversion.cpp93 t.hour, t.minute, t.second,
97 t.hour, t.minute, t.second,
104 snprintf(buffer, DateConversionBufferSize, "%02d:%02d:%02d GMT", t.hour, t.minute, t.second);
/external/chromium/base/
H A Dtime_mac.cc68 date.hour = exploded.hour;
93 exploded->hour = date.hour;
/external/icu4c/test/intltest/
H A Dcalcasts.h34 int32_t hour; member in struct:CalendarCaseTest::TestCase
H A Dtzrulets.h48 int32_t hour=0, int32_t min=0, int32_t sec=0, int32_t msec=0);
/external/ipsec-tools/src/racoon/samples/roadwarrior/client/
H A Dracoon.conf29 lifetime time 1 hour;
/external/ipsec-tools/src/racoon/samples/roadwarrior/server/
H A Dracoon.conf37 lifetime time 1 hour;
/external/icu4c/i18n/
H A Dwintzimpl.cpp62 int32_t hour, min, sec, mil; local
72 hour = mil/3600000;
79 standardDate.wHour = hour;
93 hour = mil/3600000;
100 daylightDate.wHour = hour;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_win32.c50 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
58 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
66 tm.tm_hour = hour;
100 tm->hour = tm2->tm_hour;
/external/wpa_supplicant_8/src/utils/
H A Dos_win32.c50 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
58 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
66 tm.tm_hour = hour;
100 tm->hour = tm2->tm_hour;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_win32.c50 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
58 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
66 tm.tm_hour = hour;
100 tm->hour = tm2->tm_hour;
/external/icu4c/test/cintltst/
H A Dccaltst.h84 int32_t hour, int32_t min, int32_t sec, int32_t am_pm);
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dos_win32.c55 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
63 hour < 0 || hour > 23 || min < 0 || min > 59 || sec < 0 ||
71 tm.tm_hour = hour;
/external/webkit/Source/JavaScriptCore/wtf/
H A DDateMath.h130 , hour(0)
144 , hour(inTm.tm_hour)
175 ret.tm_hour = hour;
197 hour = rhs.hour;
215 int hour; member in struct:JSC::GregorianDateTime

Completed in 580 milliseconds

1234567