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

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/third_party/tlslite/tlslite/utils/
datefuncs.py 11 hour, minute, second = tail[1:].split(":")
14 hour, minute, second = int(hour), int(minute), int(second)
15 return createDateClass(year, month, day, hour, minute, second)
22 def createDateClass(year, month, day, hour, minute, second):
23 return datetime(year, month, day, hour, minute, second)
50 def createDateClass(year, month, day, hour, minute, second):
53 c.set(year, month-1, day, hour, minute, second)
64 c.get(c.HOUR) #force refresh?
69 d.add(d.HOUR, hours
    [all...]
  /external/chromium_org/net/ftp/
ftp_directory_listing_parser_unittest.h 26 int hour; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData
56 EXPECT_EQ(test_case.hour, time_exploded.hour);
67 mock_current_time_exploded.hour = 12;
ftp_directory_listing_parser_unittest.cc 37 mock_current_time_exploded.hour = 12;
75 int year, month, day_of_month, hour, minute; local
79 base::StringToInt(lines[9 * i + 6], &hour);
102 EXPECT_EQ(hour, time_exploded.hour);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
MultiFieldTimePickerDialog.java 21 * hour, minute, second, milli, AM/PM.
24 * hour range is 0..23. Otherwise hour range is 1..12.
52 int hour, int minute, int second, int milli,
74 mHourSpinner = (NumberPicker) view.findViewById(R.id.hour);
87 hour = minHour;
95 int amPm = hour / 12;
103 hour %= 12;
104 if (hour == 0) {
105 hour = 12
249 int hour = mHourSpinner.getValue(); local
    [all...]
  /external/lzma/CPP/Windows/
Time.h 16 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds);
Time.cpp 58 unsigned year, mon, day, hour, min, sec;
69 hour = (unsigned)(v64 % 24);
113 dosTime = (year << 25) | (mon << 21) | (day << 16) | (hour << 11) | (min << 5) | (sec >> 1);
144 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds)
148 day < 1 || day > 31 || hour > 23 || min > 59 || sec > 59)
159 resSeconds = ((UInt64)(numDays * 24 + hour) * 60 + min) * 60 + sec;
  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.cpp 161 static bool withinHTMLDateLimits(int year, int month, int monthDay, int hour, int minute, int second, int millisecond)
174 return !hour && !minute && !second && !millisecond;
254 int hour = m_hour + carry; local
255 if (hour > 23) {
256 carry = hour / 24;
257 hour = hour % 24;
258 } else if (hour < 0) {
259 carry = (23 - hour) / 24;
260 hour += carry * 24
299 int hour; local
398 int hour; local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
background.js 12 var hour = time[1] % 12 || 12; // The prettyprinted hour.
14 new Notification(hour + time[2] + ' ' + period, {
  /external/chromium_org/google_apis/drive/
time_util.cc 30 int hour = 0; local
31 if (!base::StringToInt(parts[0], &hour))
38 *out_offset_to_utc_in_minutes = (hour * 60 + minute) * (ahead ? +1 : -1);
109 if (!base::StringToInt(parts[0], &exploded.hour) ||
154 exploded.hour, exploded.minute, exploded.second, exploded.millisecond);
166 exploded.hour, exploded.minute, exploded.second, exploded.millisecond);
  /external/chromium_org/v8/src/
dateparser.cc 71 int& hour = comp_[0]; local
77 if (!IsHour12(hour)) return false;
78 hour %= 12;
79 hour += hour_offset_;
82 if (!IsHour(hour) || !IsMinute(minute) ||
85 output->set(HOUR, Smi::FromInt(hour));
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPDate.java 116 /** 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/chromium_org/ash/system/chromeos/power/
power_status.cc 46 base::string16 GetBatteryTimeAccessibilityString(int hour, int min) {
47 DCHECK(hour || min);
48 if (hour && !min) {
51 base::TimeDelta::FromHours(hour));
53 if (min && !hour) {
62 base::TimeDelta::FromHours(hour)),
266 int hour = 0, min = 0; local
267 PowerStatus::SplitTimeIntoHoursAndMinutes(time, &hour, &min);
276 GetBatteryTimeAccessibilityString(hour, min));
power_status_view.cc 128 int hour = 0, min = 0; local
129 PowerStatus::SplitTimeIntoHoursAndMinutes(time, &hour, &min);
138 base::IntToString16(hour),
177 int hour = 0, min = 0; local
178 PowerStatus::SplitTimeIntoHoursAndMinutes(time, &hour, &min);
183 base::IntToString16(hour),
189 base::TimeDelta::FromMinutes(hour * 60 + min)));
  /external/chromium_org/chrome/installer/util/
google_update_experiment_util.cc 44 // HH0 = 2 digit hour,
59 then.hour,
  /external/chromium_org/third_party/icu/source/test/intltest/
calcasts.h 34 int32_t hour; member in struct:CalendarCaseTest::TestCase
  /external/icu/icu4c/source/test/intltest/
calcasts.h 34 int32_t hour; member in struct:CalendarCaseTest::TestCase
  /external/ipsec-tools/src/racoon/samples/roadwarrior/client/
racoon.conf 29 lifetime time 1 hour;
  /external/ipsec-tools/src/racoon/samples/roadwarrior/server/
racoon.conf 37 lifetime time 1 hour;
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/chromium_org/crypto/
nss_util_unittest.cc 27 prxtime.tm_hour = exploded.hour = 2;

Completed in 4124 milliseconds

1 2 3 4 5 6 7 8 910