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

1 2 3 4

  /external/chromium_org/third_party/icu/source/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
  /external/chromium_org/v8/test/intl/date-format/
timezone-name.js 39 hour : '2-digit', minute : '2-digit', second : '2-digit',
  /external/chromium_org/v8/test/intl/overrides/
date.js 36 [], {hour: 'numeric', minute: 'numeric', second: 'numeric'});
39 hour: 'numeric', minute: 'numeric', second: 'numeric'});
49 locale, {hour: 'numeric', minute: 'numeric', second: 'numeric'});
52 hour: 'numeric', minute: 'numeric', second: 'numeric'});
61 hour: 'numeric', minute: '2-digit', second: 'numeric'};
  /external/icu/icu4c/source/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
  /external/chromium_org/chrome/common/extensions/docs/examples/api/browsingData/basic/
popup.js 55 * @param {string} timeframe One of 'hour', 'day', 'week', '4weeks', or
63 'hour': 60 * 60 * 1000,
  /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/net/ftp/
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);
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;
  /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));
dateparser-inl.h 278 int hour = hourmin / 100; local
280 if (!TimeComposer::IsHour(hour) || !TimeComposer::IsMinute(min)) {
283 tz->SetAbsoluteHour(hour);
  /external/chromium_org/ash/system/chromeos/power/
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)));
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));
  /external/chromium_org/third_party/flot/
jquery.flot.time.min.js 9 */(function(e){function n(e,t){return t*Math.floor(e/t)}function r(e,t,n,r){if(typeof e.strftime=="function")return e.strftime(t);var i=function(e,t){return e=""+e,t=""+(t==null?"0":t),e.length==1?t+e:e},s=[],o=!1,u=e.getHours(),a=u<12;n==null&&(n=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]),r==null&&(r=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]);var f;u>12?f=u-12:u==0?f=12:f=u;for(var l=0;l<t.length;++l){var c=t.charAt(l);if(o){switch(c){case"a":c=""+r[e.getDay()];break;case"b":c=""+n[e.getMonth()];break;case"d":c=i(e.getDate());break;case"e":c=i(e.getDate()," ");break;case"h":case"H":c=i(u);break;case"I":c=i(f);break;case"l":c=i(f," ");break;case"m":c=i(e.getMonth()+1);break;case"M":c=i(e.getMinutes());break;case"q":c=""+(Math.floor(e.getMonth()/3)+1);break;case"S":c=i(e.getSeconds());break;case"y":c=i(e.getFullYear()%100);break;case"Y":c=""+e.getFullYear();break;case"p":c=a?"am":"pm";break;case"P":c=a?"AM":"PM";break;case"w":c=""+e.getDay()}s.push(c),o=!1}else c=="%"?o=!0:s.push(c)}return s.join("")}function i(e){function t(e,t,n,r){e[t]=function(){return n[r].apply(n,arguments)}}var n={date:e};e.strftime!=undefined&&t(n,"strftime",e,"strftime"),t(n,"getTime",e,"getTime"),t(n,"setTime",e,"setTime");var r=["Date","Day","FullYear","Hours","Milliseconds","Minutes","Month","Seconds"];for(var i=0;i<r.length;i++)t(n,"get"+r[i],e,"getUTC"+r[i]),t(n,"set"+r[i],e,"setUTC"+r[i]);return n}function s(e,t){if(t.timezone=="browser")return new Date(e);if(!t.timezone||t.timezone=="utc")return i(new Date(e));if(typeof timezoneJS!="undefined"&&typeof timezoneJS.Date!="undefined"){var n=new timezoneJS.Date;return n.setTimezone(t.timezone),n.setTime(e),n}return i(new Date(e))}function l(t){t.hooks.processOptions.push(function(t,i){e.each(t.getAxes(),function(e,t){var i=t.options;i.mode=="time"&&(t.tickGenerator=function(e){var t=[],r=s(e.min,i),u=0,l=i.tickSize&&i.tickSize[1]==="quarter"||i.minTickSize&&i.minTickSize[1]==="quarter"?f:a;i.minTickSize!=null&&(typeof i.tickSize=="number"?u=i.tickSize:u=i.minTickSize[0]*o[i.minTickSize[1]]);for(var c=0;c<l.length-1;++c)if(e.delta<(l[c][0]*o[l[c][1]]+l[c+1][0]*o[l[c+1][1]])/2&&l[c][0]*o[l[c][1]]>=u)break;var h=l[c][0],p=l[c][1];if(p=="year"){if(i.minTickSize!=null&&i.minTickSize[1]=="year")h=Math.floor(i.minTickSize[0]);else{var d=Math.pow(10,Math.floor(Math.log(e.delta/o.year)/Math.LN10)),v=e.delta/o.year/d;v<1.5?h=1:v<3?h=2:v<7.5?h=5:h=10,h*=d}h<1&&(h=1)}e.tickSize=i.tickSize||[h,p];var m=e.tickSize[0];p=e.tickSize[1];var g=m*o[p];p=="second"?r.setSeconds(n(r.getSeconds(),m)):p=="minute"?r.setMinutes(n(r.getMinutes(),m)):p=="hour"?r.setHours(n(r.getHours(),m)):p=="month"?r.setMonth(n(r.getMonth(),m)):p=="quarter"?r.setMonth(3*n(r.getMonth()/3,m)):p=="year"&&r.setFullYear(n(r.getFullYear(),m)),r.setMilliseconds(0),g>=o.minute&&r.setSeconds(0),g>=o.hour&&r.setMinutes(0),g>=o.day&&r.setHours(0),g>=o.day*4&&r.setDate(1),g>=o.month*2&&r.setMonth(n(r.getMonth(),3)),g>=o.quarter*2&&r.setMonth(n(r.getMonth(),6)),g>=o.year&&r.setMonth(0);var y=0,b=Number.NaN,w;do{w=b,b=r.getTime(),t.push(b);if(p=="month"||p=="quarter")if(m<1){r.setDate(1);var E=r.getTime();r.setMonth(r.getMonth()+(p=="quarter"?3:1));var S=r.getTime();r.setTime(b+y*o.hour+(S-E)*m),y=r.getHours(),r.setHours(0)}else r.setMonth(r.getMonth()+m*(p=="quarter"?3:1));else p=="year"?r.setFullYear(r.getFullYear()+m):r.setTime(b+g)}while(b<e.max&&b!=w);return t},t.tickFormatter=function(e,t){var n=s(e,t.options);if(i.timeformat!=null)return r(n,i.timeformat,i.monthNames,i.dayNames);var u=t.options.tickSize&&t.options.tickSize[1]=="quarter"||t.options.minTickSize&&t.options.minTickSize[1]=="quarter",a=t.tickSize[0]*o[t.tickSize[1]],f=t.max-t.min,l=i.twelveHourClock?" %p":"",c=i.twelveHourClock?"%I":"%H",h;a<o.minute?h=c+":%M:%S"+l:a<o.day?f<2*o.day?h=c+":%M"+l:h="%b %d "+c+":%M"+l:a<o.month?h="%b %d":u&&a<o.quarter||!u&&a<o.year?f<o.year?h="%b":h="%b %Y":u&&a<o.year?f<o.year?h="Q%q":h="Q%q %Y":h="%Y";var p=r(n,h,i.monthNames,i.dayNames);return p})})})}var t={xaxis:{timezone:null,timeformat:null,twelveHourClock:!1,monthNames:null}},o={second:1e3,minute:6e4,hour:36e5,day:864e5,month:2592e6,quarter:7776e6,year:525949.2*60*1e3},u=[[1,"second"],[2,"second"],[5,"second"],[10,"second"],[30,"second"],[1,"minute"],[2,"minute"],[5,"minute"],[10,"minute"],[30,"minute"],[1,"hour"],[2,"hour"],[4,"hour"],[8,"hour"],[12,"hour"],[1,"day"],[2,"day"],[3,"day"],[.25,"month"],[.5,"month"],[1,"month"],[2,"month"]],a=u.concat([[3 (…) property
  /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/chromium_org/third_party/icu/source/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/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/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/icu/icu4c/source/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/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/chromium_org/ash/system/date/
date_view.cc 243 base::string16 hour = current_time.substr(0, colon_pos); local
247 if (hour.length() == 1 &&
250 hour = base::ASCIIToUTF16("0") + hour;
252 vertical_label_hours_->SetText(hour);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
DateTimeFieldsState.h 58 unsigned hour() const { return m_hour; } function in class:blink::DateTimeFieldsState
  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.h 45 // * Time type: hour-minute-second-millisecond
46 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond
75 int hour() const { return m_hour; } function in class:blink::DateComponents
112 // Sets hour, minute, second and millisecond.
114 // Sets year, month, monthDay, hour, minute, second and millisecond.
116 // Sets year, month, monthDay, hour, minute, second and millisecond, and adjusts timezone.
  /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...]

Completed in 1354 milliseconds

1 2 3 4