HomeSort by relevance Sort by last modified time
    Searched defs:hour (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/media/libdrm/mobile1/include/objmng/
drm_time.h 48 uint16_t hour; member in struct:__db_system_time_
  /external/icu4c/test/intltest/
calcasts.h 34 int32_t hour; member in struct:CalendarCaseTest::TestCase
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
  /frameworks/av/media/mtp/
MtpUtils.cpp 32 hh is replaced by the hour (00-23), mm is replaced by the minute (00-59), and ss by the
37 int year, month, day, hour, minute, second; local
41 &year, &month, &day, &hour, &minute, &second) != 6)
56 tm.tm_hour = 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/chromium/net/ftp/
ftp_directory_listing_parser_unittest.cc 77 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);
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;
  /external/v8/src/
dateparser.cc 94 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));
dateparser-inl.h 297 int hour = hourmin / 100; local
299 if (!TimeComposer::IsHour(hour) || !TimeComposer::IsMinute(min)) {
302 tz->SetAbsoluteHour(hour);
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 75 $hour = substr($timePart,8,2); variable
77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
  /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;
  /external/icu4c/test/compat/
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/smack/src/org/xbill/DNS/
FormattedTime.java 68 int hour = Integer.parseInt(s.substring(8, 10)); local
71 c.set(year, month, date, hour, minute, second);
  /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);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
HeaderParser.java 129 * Set the time field. This has the format hour:minute:second
134 int hour = Integer.parseInt(s); local
135 calendar.set(Calendar.HOUR_OF_DAY, hour);
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.h 130 , hour(0)
144 , hour(inTm.tm_hour)
175 ret.tm_hour = hour;
197 hour = rhs.hour;
215 int hour; member in struct:JSC::GregorianDateTime
  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.java 75 this.hour = h;
80 int hour; field in class:HttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
209 int hour = timeString.charAt(i++) - '0'; local
211 hour = hour * 10 + (timeString.charAt(i++) - '0');
223 return new TimeOfDay(hour, minute, second);
  /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...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbEtwsInfo.java 139 int hour = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[3]); local
161 time.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);
  /packages/apps/Email/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/base/
time.h 213 int hour; // Hour within the current day (0-23) member in struct:base::Time::Exploded
214 int minute; // Minute within the current hour (0-59)
  /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;
  /external/openssl/crypto/
o_time.c 179 short year, month, day, hour, minute, second, member in struct:vms_vectime
204 result->tm_hour = time_values.hour;

Completed in 6617 milliseconds

1 2 3 4 5 6 7