HomeSort by relevance Sort by last modified time
    Searched defs:hour (Results 51 - 75 of 214) sorted by null

1 23 4 5 6 7 8 9

  /hardware/ti/omap4xxx/camera/inc/
NV12_resize.h 43 mmInt32 hour; member in struct:__anon35637
  /libcore/luni/src/main/java/java/util/
TimeZone.java 54 * {@link #getDSTSavings DST savings} (usually, but not necessarily, 1 hour).
249 * <p>This class returns {@code 3600000} (1 hour) for time zones
367 int hour; local
370 hour = Integer.parseInt(m.group(1));
378 if (hour < 0 || hour > 23 || minute < 0 || minute > 59) {
383 int raw = (hour * 3600000) + (minute * 60000);
388 String cleanId = String.format("GMT%c%02d:%02d", sign, hour, minute);
  /libcore/luni/src/test/java/libcore/java/util/
CalendarTest.java 64 * drop an hour to keep the hour+minute constant unless that prevents the
108 calendar.add(Calendar.HOUR, 24);
147 int hour = 0; local
151 calendar.set(year, month, day, hour, minute);
155 assertEquals(hour, calendar.get(Calendar.HOUR_OF_DAY));
196 int year, int month, int day, int hour, int minute) {
200 assertEquals(hour, calendar.get(Calendar.HOUR_OF_DAY));
216 cal.clear(Calendar.HOUR);
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleApiCalls.java 84 final int hour = intent.getIntExtra(EXTRA_HOUR, -1); local
93 if (hour < 0 || hour > 23 || minutes < 0 || minutes > 59) {
108 setSelectionFromIntent(intent, hour, minutes, selection, args);
133 Alarm alarm = new Alarm(hour, minutes);
250 int hour,
254 selection.append(Alarm.HOUR).append("=?");
255 args.add(String.valueOf(hour));
AnalogClock.java 241 int hour = mCalendar.hour; local
248 mHour = hour + mMinutes / 60.0f;
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
SunCalculator.java 82 int hour = (int) Math.floor(time); local
83 int minute = (int) Math.round((time - hour) * 60);
85 hour++;
87 return hour;
91 int hour = (int) Math.floor(time); local
92 int minute = (int) Math.round((time - hour) * 60);
100 int hour = (int) Math.floor(time); local
101 int minute = (int) Math.round((time - hour) * 60);
104 hour++;
106 return (hour * 60 + minute) / 1440.0f
111 int hour = (int) Math.floor(time); local
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 92 assertEquals(time.hour, anotherTime.hour);
336 || local.monthDay != test.day2 || local.hour != test.hour2
341 local.year, local.month, local.monthDay, local.hour, local.minute);
354 || local.monthDay != test.day2 || local.hour != test.hour2
359 local.year, local.month, local.monthDay, local.hour, local.minute);
377 || local.monthDay != test.day2 || local.hour != test.hour2
383 local.year, local.month, local.monthDay, local.hour, local.minute,
399 || local.monthDay != test.day2 || local.hour != test.hour2
405 local.year, local.month, local.monthDay, local.hour, local.minute
585 final int hour = 16; local
    [all...]
  /external/chromium/base/third_party/nspr/
prtime.cc 137 gregorian_date.hour = exploded->tm_hour;
530 int hour = -1; local
784 if (hour >= 0 && min >= 0) /* already got it */
835 /* If we made it here, we've parsed hour and min,
857 hour = tmp_hour;
    [all...]
  /external/chromium_org/base/third_party/nspr/
prtime.cc 142 gregorian_date.hour = exploded->tm_hour;
535 int hour = -1; local
789 if (hour >= 0 && min >= 0) /* already got it */
840 /* If we made it here, we've parsed hour and min,
    [all...]
  /external/chromium_org/base/time/
time.h 231 int hour; // Hour within the current day (0-23) member in struct:base::Time::Exploded
232 int minute; // Minute within the current hour (0-59)
  /external/chromium_org/content/public/android/java/resource_map/org/chromium/content/
R.java 39 public static int hour; field in class:R.id
  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.cpp 158 static bool withinHTMLDateLimits(int year, int month, int monthDay, int hour, int minute, int second, int millisecond)
171 return !hour && !minute && !second && !millisecond;
251 int hour = m_hour + carry; local
252 if (hour > 23) {
253 carry = hour / 24;
254 hour = hour % 24;
255 } else if (hour < 0) {
256 carry = (23 - hour) / 24;
257 hour += carry * 24
296 int hour; local
395 int hour; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
zonemeta.cpp 128 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, n; local
163 hour = 10*hour + n;
181 + hour * U_MILLIS_PER_HOUR + min * U_MILLIS_PER_MINUTE;
  /external/chromium_org/third_party/icu/source/tools/tzcode/
icuzdump.cpp 64 int32_t hour, min, sec; local
70 hour = offset / 60;
72 decf->format(hour, appendTo);
  /external/icu4c/tools/tzcode/
icuzdump.cpp 64 int32_t hour, min, sec; local
70 hour = offset / 60;
72 decf->format(hour, appendTo);
  /external/lzma/C/Util/7z/
7zMain.c 225 unsigned year, mon, day, hour, min, sec; local
232 hour = (unsigned)(v64 % 24); v64 /= 24;
256 s = UIntToStr(s, hour, 2); *s++ = ':';
  /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...]
  /frameworks/base/core/java/android/text/format/
DateFormat.java 85 public static final char HOUR = 'h';
126 * Returns true if user preference is set to 24-hour format.
128 * @return true if 24 hour time format is selected, false otherwise.
203 * to the current locale and the user's 12-/24-hour clock preference.
213 * to the current locale and the user's 12-/24-hour clock preference.
467 case 'K': // hour in am/pm (0-11)
468 case 'h': // hour in am/pm (1-12)
470 int hour = inDate.get(Calendar.HOUR); local
471 if (c == 'h' && hour == 0)
480 int hour = inDate.get(Calendar.HOUR_OF_DAY); local
    [all...]
  /frameworks/base/core/jni/
android_text_format_Time.cpp 77 "allDay is true but sec, min, hour are not 0.");
438 // hour
525 // hour
529 int hour = n; local
594 // hour
599 hour += n;
612 env->SetIntField(This, g_hourField, hour);
616 // we need to normalize after applying the hour and minute offsets
663 g_hourField = env->GetFieldID(timeClass, "hour", "I");
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
Alarm.java 47 HOUR + ", " +
53 HOUR,
86 values.put(HOUR, alarm.hour);
222 public int hour; field in class:Alarm
235 public Alarm(int hour, int minutes) {
237 this.hour = hour;
249 hour = c.getInt(HOUR_INDEX);
268 hour = p.readInt()
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 81 private int hour; field in class:DateTimeParser.Time
86 public Time(int hour, int minute, int second, int zone) {
87 this.hour = hour;
93 public int getHour() { return hour; }
285 h = hour();
302 final public int hour() throws ParseException { method in class:DateTimeParser
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
videotext.h 87 int hour; /* requested hour (hexadecimal) */ member in struct:__anon40568
108 int hour; /* hour (hexadecimal) */ member in struct:__anon40569
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videotext.h 87 int hour; /* requested hour (hexadecimal) */ member in struct:__anon42159
108 int hour; /* hour (hexadecimal) */ member in struct:__anon42160
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videotext.h 87 int hour; /* requested hour (hexadecimal) */ member in struct:__anon43673
108 int hour; /* hour (hexadecimal) */ member in struct:__anon43674
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
CalendarTest.java 371 int hour = cal.get(Calendar.HOUR); local
372 cal.set(Calendar.HOUR, hour);
375 // setting AM_PM without HOUR should not have any affect
380 hour = cal.get(Calendar.HOUR);
384 assertEquals(hour, cal.get(Calendar.HOUR));
516 // test by hour
    [all...]

Completed in 1004 milliseconds

1 23 4 5 6 7 8 9