HomeSort by relevance Sort by last modified time
    Searched refs:HOUR (Results 26 - 50 of 86) sorted by null

12 3 4

  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 228 setValue(hdfname + ".24hour",
231 setValue(hdfname + ".hour",
233 cal.get(Calendar.HOUR) == 0 ? 12 : cal.get(Calendar.HOUR)));
  /frameworks/base/core/java/android/text/format/
Time.java 53 * True if this is an allDay event. The hour, minute, second fields are
69 * Hour of day [0-23]
71 public int hour; field in class:Time
124 public static final int HOUR = 3;
227 * @param field one of the constants for HOUR, MINUTE, SECOND, etc.
236 case HOUR:
278 this.hour = 0;
297 * hour}, {@code minute}, and {@code second} are not 0.
391 * field of this Time class is set to true and the <code>hour</code>,
448 * the {@link #allDay} field is set to true and the {@link #hour},
    [all...]
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...]
  /external/chromium_org/third_party/icu/source/test/intltest/
calregts.cpp 101 "HOUR",
163 logln(UnicodeString("HOUR=") + cal->get(UCAL_HOUR, status)); //prints 0
246 ": HOUR = " + cal->get(UCAL_HOUR,status));
368 logln("HOUR: " + Calendar::get(Calendar::HOUR));
394 logln("HOUR: " + Calendar::get(Calendar::HOUR));
459 logln(UnicodeString("Hour: ")+cal->get(UCAL_HOUR_OF_DAY, status));
461 logln(UnicodeString("Hour: ")+cal->get(UCAL_HOUR_OF_DAY, status));
763 cal1.set( Calendar::HOUR, 10 );
    [all...]
  /external/chromium_org/chrome/browser/resources/quota_internals/
event_handler.js 135 var HOUR = 60 * MINUTE;
136 var DAY = 23 * HOUR;
140 var SHOW_MINUTE = 5 * HOUR;
152 result = Math.ceil(delta / HOUR) + ' hr ago ';
  /libcore/luni/src/main/java/java/text/
DateFormat.java 132 * used for the one-based 24-hour clock. For example, 23:59 + 01:00 results
140 * used for the zero-based 24-hour clock. For example, 23:59 + 01:00 results
201 * {@link Calendar#HOUR} field.
207 * {@link Calendar#HOUR} field.
688 * Marks the hour of the day part of a date (0-11).
690 public static final Field HOUR_OF_DAY0 = new Field("hour of day", Calendar.HOUR_OF_DAY);
693 * Marks the hour of the day part of a date (1-12).
695 public static final Field HOUR_OF_DAY1 = new Field("hour of day 1", -1);
751 * Marks the hour part of a date (0-11).
753 public static final Field HOUR0 = new Field("hour", Calendar.HOUR)
    [all...]
SimpleDateFormat.java 73 * <tr> <td>{@code H}</td> <td>hour in day (0-23)</td> <td>(Number)</td> <td>0</td> </tr>
74 * <tr> <td>{@code K}</td> <td>hour in am/pm (0-11)</td> <td>(Number)</td> <td>0</td> </tr>
83 * <tr> <td>{@code h}</td> <td>hour in am/pm (1-12)</td> <td>(Number)</td> <td>12</td> </tr>
84 * <tr> <td>{@code k}</td> <td>hour in day (1-24)</td> <td>(Number)</td> <td>24</td> </tr>
85 * <tr> <td>{@code m}</td> <td>minute in hour</td> <td>(Number)</td> <td>30</td> </tr>
609 int hour = calendar.get(Calendar.HOUR_OF_DAY); local
610 appendNumber(buffer, count, hour == 0 ? 24 : hour);
659 hour = calendar.get(Calendar.HOUR);
892 int hour = result.intValue(); local
1178 int hour = result.intValue(); local
    [all...]
  /external/icu4c/test/intltest/
calregts.cpp 106 "HOUR",
168 logln(UnicodeString("HOUR=") + cal->get(UCAL_HOUR, status)); //prints 0
286 ": HOUR = " + cal->get(UCAL_HOUR,status));
412 logln("HOUR: " + Calendar::get(Calendar::HOUR));
438 logln("HOUR: " + Calendar::get(Calendar::HOUR));
503 logln(UnicodeString("Hour: ")+cal->get(UCAL_HOUR_OF_DAY, status));
505 logln(UnicodeString("Hour: ")+cal->get(UCAL_HOUR_OF_DAY, status));
807 cal1.set( Calendar::HOUR, 10 );
    [all...]
  /external/icu4c/i18n/
tzfmt.cpp 178 HOUR = 1,
258 case HOUR:
272 return HOUR;
    [all...]
  /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...]
  /external/chromium_org/v8/src/
dateparser.h 44 // [3]: hour
54 YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, MILLISECOND, UTC_OFFSET, OUTPUT_SIZE
318 void SetAbsoluteHour(int hour) { hour_ = hour; }
  /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...]
  /external/v8/src/
dateparser.h 44 // [3]: hour
54 YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, MILLISECOND, UTC_OFFSET, OUTPUT_SIZE
318 void SetAbsoluteHour(int hour) { hour_ = hour; }
  /libcore/luni/src/test/java/tests/api/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...]
  /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));
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceProcessor.java 258 iterator.hour,
259 iterator.getActualMaximum(Time.HOUR));
785 freqField = Time.HOUR;
956 int hour = usebyhour local
1141 int hour = date.hour; local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore2Test.java 684 int hourExpected = Calendar.getInstance().get(Calendar.HOUR);
691 int hourActual1 = Calendar.getInstance().get(Calendar.HOUR);
705 int hourActual2 = Calendar.getInstance().get(Calendar.HOUR);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_datetime.py 571 if hasattr(fromord, "hour"):
574 self.assertEqual(fromord.hour, 0)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_datetime.py 571 if hasattr(fromord, "hour"):
574 self.assertEqual(fromord.hour, 0)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
calendar.h 54 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
122 * AM_PM + HOUR
192 HOUR, // Example: 0..11
252 * Useful constants for hour in 12-hour clock. Used in GregorianCalendar.
515 * for that field (e.g., days for the day fields, hours for the hour
534 * for that field (e.g., days for the day fields, hours for the hour
553 * hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the hour value in the range
578 * hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the hour value in the rang
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tz2icu.cpp 729 const int32_t HOUR = 3600;
738 if (offset <= -16*HOUR || offset >= 16*HOUR) {
832 if (offset < 0 || offset > HOUR) {
    [all...]
  /external/icu4c/i18n/unicode/
calendar.h 55 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
124 * AM_PM + HOUR
140 * hour at 2:00 AM. So wall clock time from 1:00 AM to 1:59 AM occur twice. In this
227 HOUR, // Example: 0..11
284 * Useful constants for hour in 12-hour clock. Used in GregorianCalendar.
549 * for that field (e.g., days for the day fields, hours for the hour
571 * for that field (e.g., days for the day fields, hours for the hour
600 * When rolling on the hour-in-day or Calendar::HOUR_OF_DAY field, it will roll the
601 * hour value in the range between 0 and 23, which is zero-based
    [all...]
  /external/icu4c/tools/tzcode/
tz2icu.cpp 729 const int32_t HOUR = 3600;
738 if (offset <= -16*HOUR || offset >= 16*HOUR) {
832 if (offset < 0 || offset > HOUR) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ssl.py 395 ("MON DAY 24HOUR:MINUTE:SEC YEAR TIMEZONE") and return
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ssl.py 395 ("MON DAY 24HOUR:MINUTE:SEC YEAR TIMEZONE") and return

Completed in 1052 milliseconds

12 3 4