Searched refs:hour (Results 101 - 125 of 245) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DLocaleMacTest.cpp60 DateComponents timeComponents(int hour, int minute, int second, int millisecond) argument
63 date.setMillisecondsSinceMidnight(hour * msPerHour + minute * msPerMinute + second * msPerSecond + millisecond);
96 String formatTime(const String& localeString, int hour, int minute, int second, int millisecond, bool useShortFormat) argument
99 return locale->formatDateTime(timeComponents(hour, minute, second, millisecond), (useShortFormat ? Locale::FormatTypeShort : Locale::FormatTypeMedium));
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Value.cpp512 CJS_Date::CJS_Date(v8::Isolate* isolate,int year, int mon, int day,int hour, int min, int sec) argument
515 m_pDate = JS_NewDate(isolate,MakeDate(year,mon,day,hour,min,sec,0));
518 double CJS_Date::MakeDate(int year, int mon, int day,int hour, int min, int sec,int ms) argument
520 return JS_MakeDate(JS_MakeDay(year,mon,day), JS_MakeTime(hour,min,sec,ms));
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDateTest.java99 static private long getTime(int year, int month, int date, int hour, argument
101 aCal.set(year, month, date, hour, minute, second);
/external/chromium_org/base/time/
H A Dtime.cc205 exploded.hour = 0;
266 is_in_range(hour, 0, 23) &&
H A Dtime_posix.cc208 exploded->hour = timestruct.tm_hour;
219 timestruct.tm_hour = exploded.hour;
H A Dtime_win.cc234 st.wHour = exploded.hour;
294 exploded->hour = st.wHour;
/external/chromium_org/net/cookies/
H A Dcookie_util.cc149 token.c_str(), "%2u:%2u:%2u", &exploded.hour,
193 exploded.hour <= 23 && exploded.minute <= 59 && exploded.second <= 59) {
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDateTimeEditElement.cpp109 && m_parameters.minimum.hour() <= m_parameters.maximum.hour()) {
110 m_hour23Range.minimum = m_parameters.minimum.hour();
111 m_hour23Range.maximum = m_parameters.maximum.hour();
334 || (m_hour23Range.minimum < 12 && m_hour23Range.maximum < 12 && m_dateValue.hour() < 12)
335 || (m_hour23Range.minimum >= 12 && m_hour23Range.maximum >= 12 && m_dateValue.hour() >= 12);
345 if (m_hour23Range.isSingleton() && m_hour23Range.minimum == m_dateValue.hour()
361 return hourPartOfMinimum == m_dateValue.hour() && stepRange().step().remainder(decimalMsPerDay).isZero();
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dtimezone.h509 * typically one hour.
764 * (i.e., one hour) if this time zone observes Daylight Saving
891 * @param hour Receives parsed hour field
896 static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour,
914 * @param hour offset hours
921 static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec,
/external/chromium_org/v8/src/
H A Dobjects-debug.cc434 CHECK(hour()->IsUndefined() || hour()->IsSmi() || hour()->IsNaN());
449 if (hour()->IsSmi()) {
450 int hour = Smi::cast(this->hour())->value(); local
451 CHECK(0 <= hour && hour <= 23);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
H A Dindex.php75 $hour = substr($timePart,8,2); variable
77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
/external/icu/icu4c/source/i18n/unicode/
H A Dtimezone.h509 * typically one hour.
764 * (i.e., one hour) if this time zone observes Daylight Saving
891 * @param hour Receives parsed hour field
896 static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour,
914 * @param hour offset hours
921 static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec,
/external/openssl/crypto/
H A Do_time.c179 short year, month, day, hour, minute, second, member in struct:vms_vectime
204 result->tm_hour = time_values.hour;
/external/pdfium/fpdfsdk/include/javascript/
H A DJS_Value.h149 CJS_Date(v8::Isolate* isolate,int year, int mon, int day,int hour, int min, int sec);
176 static double MakeDate(int year, int mon, int mday,int hour, int min, int sec,int ms);
/external/lzma/C/Util/7z/
H A D7zMain.c225 unsigned year, mon, day, hour, min, sec; local
232 hour = (unsigned)(v64 % 24); v64 /= 24;
256 s = UIntToStr(s, hour, 2); *s++ = ':';
/external/chromium_org/chrome/browser/extensions/
H A Dconvert_web_app.cc72 (create_time_exploded.hour * Time::kMicrosecondsPerHour));
/external/chromium_org/chrome/browser/ui/webui/
H A Dinstant_ui.cc42 exploded.hour, exploded.minute, exploded.second, exploded.millisecond);
/external/chromium_org/mojo/spy/
H A Dwebsocket_server.cc65 exploded.hour,
/external/chromium_org/net/ftp/
H A Dftp_directory_listing_parser_ls.cc44 if (!base::StringToInt(time_parts[0], &time_exploded.hour))
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_output_unittest.py192 day=int(match.group(3)), hour=int(match.group(4)),
/external/chromium_org/third_party/libxslt/libexslt/
H A Ddate.c90 unsigned int hour :5; /* 0 <= hour <= 23 */ member in struct:_exsltDateValDate
103 double sec; /* sec stores min and hour also */
167 hour and min structure vals are unsigned, so normal macros give
171 ((dt->hour <=23 ) && (dt->min <= 59) && \
486 unsigned int hour = 0; /* use temp var in case str is not xs:time */ local
489 PARSE_2_DIGITS(hour, cur, VALID_HOUR, ret);
498 dt->hour = hour;
520 dt->hour, d
[all...]
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DDateTimePickerDialog.java42 * @param hourOfDay The hour that was set.
130 mTimePicker.setCurrentHour(time.hour);
/external/gtest/test/
H A Dgtest_xml_output_unittest.py192 day=int(match.group(3)), hour=int(match.group(4)),
/external/kernel-headers/original/uapi/linux/
H A Dtelephony.h101 char hour[3]; member in struct:__anon23446
/external/pdfium/fpdfsdk/include/
H A Dfsdk_baseannot.h53 FX_BYTE hour; member in struct:CPDFSDK_DateTime::FX_DATETIME

Completed in 2276 milliseconds

12345678910