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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/power_LoadTest/extension/
time.js 19 hour: 'numeric',
18 var formatting = { property in class:dateToString.formatting
  /external/icu/icu4c/source/test/intltest/
calcasts.h 36 int32_t hour; member in struct:CalendarCaseTest::TestCase
  /external/protobuf/src/google/protobuf/stubs/
time.h 43 int hour; member in struct:google::protobuf::internal::DateTime
  /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/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...]
  /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/alarms/
TimePickerDialogFragment.java 55 final int hour = args.getInt(ARG_HOUR, now.get(Calendar.HOUR_OF_DAY)); local
65 }, hour, minute, DateFormat.is24HourFormat(context)); field in class:TimePickerDialogFragment
71 timePicker.setCurrentHour(hour); external variable declarations
88 show(fragment, -1 /* hour */, -1 /* minute */);
136 * @param hourOfDay the hour that was set
  /system/core/logcat/tests/
logcat_benchmark.cpp 39 int hour; member in class:timestamp
49 ok = sscanf(buffer, "%d-%d %d:%d:%d.%d ", &month, &day, &hour,
63 ((hour < T.hour) ||
64 ((hour == T.hour) &&
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 38 /** Integer as a 24-hour format */
39 public int hour; field in class:Alarm
43 public Alarm(int id, int month, int date, int hour, int minute) {
47 this.hour = hour;
65 jsonObject.put("hour", hour);
87 alarm.hour = jsonObject.getInt("hour");
102 ", hour=" + hour
    [all...]
AlarmUtil.java 57 alarmTime.set(Calendar.HOUR_OF_DAY, alarm.hour);
67 alarm.hour, alarm.minute,
84 * Returns a next alarm time (nearest day) Calendar instance with the hour and the minute.
86 * @param hour the integer of the hour an alarm should go off
88 * @return a {@link Calendar} instance an alarm should go off given the passed hour and the
91 public Calendar getNextAlarmTime(int hour, int minute) {
93 alarmTime.set(Calendar.HOUR_OF_DAY, hour);
105 int hour = extras.getInt(AlarmIntentService.KEY_ALARM_HOUR); local
108 return new Alarm(id, month, date, hour, minute)
    [all...]
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 38 /** Integer as a 24-hour format */
39 public int hour; field in class:Alarm
43 public Alarm(int id, int month, int date, int hour, int minute) {
47 this.hour = hour;
65 jsonObject.put("hour", hour);
87 alarm.hour = jsonObject.getInt("hour");
102 ", hour=" + hour
    [all...]
AlarmUtil.java 57 alarmTime.set(Calendar.HOUR_OF_DAY, alarm.hour);
67 alarm.hour, alarm.minute,
84 * Returns a next alarm time (nearest day) Calendar instance with the hour and the minute.
86 * @param hour the integer of the hour an alarm should go off
88 * @return a {@link Calendar} instance an alarm should go off given the passed hour and the
91 public Calendar getNextAlarmTime(int hour, int minute) {
93 alarmTime.set(Calendar.HOUR_OF_DAY, hour);
105 int hour = extras.getInt(AlarmIntentService.KEY_ALARM_HOUR); local
108 return new Alarm(id, month, date, hour, minute)
    [all...]
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
Alarm.java 38 /** Integer as a 24-hour format */
39 public int hour; field in class:Alarm
43 public Alarm(int id, int month, int date, int hour, int minute) {
47 this.hour = hour;
65 jsonObject.put("hour", hour);
87 alarm.hour = jsonObject.getInt("hour");
102 ", hour=" + hour
    [all...]
AlarmUtil.java 57 alarmTime.set(Calendar.HOUR_OF_DAY, alarm.hour);
66 alarm.hour, alarm.minute,
83 * Returns a next alarm time (nearest day) Calendar instance with the hour and the minute.
85 * @param hour the integer of the hour an alarm should go off
87 * @return a {@link Calendar} instance an alarm should go off given the passed hour and the
90 public Calendar getNextAlarmTime(int hour, int minute) {
92 alarmTime.set(Calendar.HOUR_OF_DAY, hour);
104 int hour = extras.getInt(AlarmIntentService.KEY_ALARM_HOUR); local
107 return new Alarm(id, month, date, hour, minute)
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Stitch/
IFWIStitch.bat 27 set hour=%time: =0% variable
33 set IFWI_Suffix=%today%_%hour:~0,2%%time:~3,2%
  /external/icu/icu4c/source/i18n/
wintzimpl.cpp 66 int32_t hour, min, sec, mil; local
76 hour = mil/3600000;
83 standardDate.wHour = static_cast<WORD>(hour);
97 hour = mil/3600000;
104 daylightDate.wHour = static_cast<WORD>(hour);
  /external/icu/icu4c/source/test/compat/
tzdate.c 34 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime);
41 int year, month, day, hour, minute; local
56 hour = atoi(argv[4]);
63 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime);
111 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) {
124 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...]
  /packages/apps/DeskClock/src/com/android/deskclock/
FetchMatchingAlarmsAction.java 74 final int hour = mIntent.getIntExtra(AlarmClock.EXTRA_HOUR, -1); local
78 boolean badInput = isPm != null && hour > 12 && isPm;
79 badInput |= hour < 0 || hour > 23;
85 final String reason = mContext.getString(R.string.invalid_time, hour, minutes,
91 final int hour24 = Boolean.TRUE.equals(isPm) && hour < 12 ? (hour + 12) : hour;
95 if (alarm.hour == hour24 && alarm.minutes == minutes) {
165 Alarm.HOUR, Alarm.MINUTES, Alarm.ENABLED)
    [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/setting/
TimePickerDialogFragment.java 26 private static final String HOUR_KEY = "hour";
48 int hour = args.getInt(HOUR_KEY); local
50 return new TimePickerDialog(getContext(), this, hour, minute, true);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winnls32.h 22 WORD hour; member in struct:_tagDATETIME
  /cts/tests/tests/widget/src/android/widget/cts/
TextClockTest.java 95 int hour = mNow.get(Calendar.HOUR_OF_DAY); local
96 if (hour < 22 && hour > 12) {
115 int hour = Integer.parseInt(mTextClock.getText().toString());
116 ok.value = hour >= 1 && hour < 12;
135 int hour = Integer.parseInt(mTextClock.getText().toString());
136 ok.value = hour > 12 && hour < 24;
153 // Now test that it isn't updated when a non-12/24 hour setting is se
    [all...]
  /external/apache-http/android/src/android/net/http/
LegacyHttpDateTime.java 75 this.hour = h;
80 int hour; field in class:LegacyHttpDateTime.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);
  /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);

Completed in 1685 milliseconds

1 2 3 4 5 6 7 8 91011>>