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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/intl/date-format/
timezone-name.js 39 hour : '2-digit', minute : '2-digit', second : '2-digit',
38 year: 'numeric', month: 'long', day: 'numeric', property in class:flags
  /external/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'};
60 var options = {year: 'numeric', month: 'long', day: 'numeric', property in class:options
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
tm1637.cxx 65 int hour = (gmt) ? gmt->tm_hour : 0; local
67 // Format and store the time in 24 hour format
68 snprintf(myTime, 5, "%2d%02d", (hour + timezone + 24) % 24, min);
wt5001.cxx 119 uint8_t hour = 0, minute = 0, second = 0; local
120 if (mp3->getTime(&hour, &minute, &second))
121 cout << "The device time is: " << int(hour) << ":" << int(minute)
  /hardware/bsp/intel/peripheral/libupm/examples/java/
TM1637Sample.java 56 int hour = now.getHour(); local
60 System.out.println(hour + ":" + min + ":" + sec);
61 myDisplay.writeString(hour + ":" + min);
WT5001Sample.java 112 short hour[] = new short[1]; local
115 if (mp3.getTime(hour, minute, second))
117 .println("The device time is: " + hour[0] + ":" + minute[0] + ":" + second[0]);
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
dateinterval.py 19 hour = minute*60 variable
20 day = hour*24
29 'h': hour,
63 """Decodes a number in the format 1h4d3m (1 hour, 3 days, 3 minutes)
  /external/icu/icu4c/source/test/intltest/
calcasts.h 34 int32_t hour; member in struct:CalendarCaseTest::TestCase
  /external/testng/src/test/java/test/tmp/
TimeBombTest.java 21 int hour = Integer.parseInt(string.substring(0, 2)); local
24 result.set(Calendar.HOUR_OF_DAY, hour);
  /frameworks/av/media/mtp/
MtpUtils.cpp 31 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
39 &year, &month, &day, &hour, &minute, &second) != 6)
61 tm.tm_hour = hour;
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
TimePickerBindingAdapter.java 29 @BindingAdapter("android:hour")
30 public static void setHour(TimePicker view, int hour) {
32 if (view.getHour() != hour) {
33 view.setHour(hour);
36 if (view.getCurrentHour() != hour) {
37 view.setCurrentHour(hour);
56 @InverseBindingAdapter(attribute = "android:hour")
62 Integer hour = view.getCurrentHour(); local
63 if (hour == null) {
66 return hour;
    [all...]
  /hardware/bsp/intel/peripheral/libupm/examples/python/
wt5001.py 100 hour = upmWt5001.uint8Array(0) variable
103 myMP3Player.getTime(hour, minute, second)
104 mp3time = str(hour.__getitem__(0)) + ":"
  /external/chromium-trace/catapult/third_party/WebOb/webob/
datetime_utils.py 27 'year', 'month', 'week', 'day', 'hour', 'minute', 'second',
56 hour = timedelta(hours=1) variable
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
task.py 39 The scheduling is similar to cron jobs. Each task has an hour attribute.
40 The allowable values for hour are [0-23|*].
45 hour='*' - the task would be executed each hour
46 hour='3' - the task would be executed at 3AM GMT each day.
50 hour = StringProperty(required=True, validator=check_hour, default='*') variable in class:Task
64 self.hourly = self.hour == '*'
65 self.daily = self.hour != '*'
74 If it's a daily task and it's never been run and the hour is right, run it now.
82 if int(self.hour) == self.now.hour
    [all...]
  /external/v8/src/
dateparser.cc 72 int& hour = comp_[0]; local
78 if (!IsHour12(hour)) return false;
79 hour %= 12;
80 hour += hour_offset_;
83 if (!IsHour(hour) || !IsMinute(minute) ||
85 // A 24th hour is allowed if minutes, seconds, and milliseconds are 0
86 if (hour != 24 || minute != 0 || second != 0 || millisecond != 0) {
91 output->set(HOUR, Smi::FromInt(hour));
  /packages/apps/DeskClock/src/com/android/deskclock/
FetchMatchingAlarmsAction.java 76 final int hour = mIntent.getIntExtra(AlarmClock.EXTRA_HOUR, -1); local
80 boolean badInput = isPm != null && hour > 12 && isPm;
81 badInput |= hour < 0 || hour > 23;
87 final String reason = mContext.getString(R.string.invalid_time, hour, minutes,
93 final int hour24 = Boolean.TRUE.equals(isPm) && hour < 12 ? (hour + 12) : hour;
97 if (alarm.hour == hour24 && alarm.minutes == minutes) {
167 Alarm.HOUR, Alarm.MINUTES, Alarm.ENABLED)
    [all...]
  /system/core/logcat/tests/
logcat_benchmark.cpp 36 int hour; member in class:timestamp
48 &month, &day, &hour, &minute, &second, &millisecond) == 6;
64 && ((hour < T.hour)
65 || ((hour == T.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;
  /hardware/intel/img/psb_headers/DRM/cc54/inc/
drm_common_api.h 52 uint8_t hour; member in struct:time_of_day
  /libcore/ojluni/src/main/java/java/sql/
Time.java 42 * given values for the hour, minute, and second.
50 * @param hour 0 to 23
58 public Time(int hour, int minute, int second) {
59 super(70, 0, 1, hour, minute, second);
91 int hour; local
103 hour = Integer.parseInt(s.substring(0, firstColon));
111 return new Time(hour, minute, second);
120 int hour = super.getHours(); local
127 if (hour < 10) {
128 hourString = "0" + hour;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winnls32.h 19 WORD hour; member in struct:_tagDATETIME
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 37 /** Integer as a 24-hour format */
38 public int hour; field in class:Alarm
47 hour = in.readInt();
73 parcel.writeInt(hour);
87 jsonObject.put("hour", hour);
109 alarm.hour = jsonObject.getInt("hour");
124 ", hour=" + hour
    [all...]
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 37 /** Integer as a 24-hour format */
38 public int hour; field in class:Alarm
47 hour = in.readInt();
73 parcel.writeInt(hour);
87 jsonObject.put("hour", hour);
109 alarm.hour = jsonObject.getInt("hour");
124 ", hour=" + hour
    [all...]

Completed in 620 milliseconds

1 2 3 4 5 6 7 8 91011>>