HomeSort by relevance Sort by last modified time
    Searched refs:MINUTES (Results 1 - 25 of 49) sorted by null

1 2

  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockContract.java 104 * Minutes in localtime 0 - 59.
107 public static final String MINUTES = "minutes";
234 * Alarm minutes in localtime 0 - 59
237 public static final String MINUTES = "minutes";
ClockDatabaseHelper.java 75 ClockContract.AlarmsColumns.MINUTES + " INTEGER NOT NULL, " +
92 ClockContract.InstancesColumns.MINUTES + " INTEGER NOT NULL, " +
131 ClockContract.AlarmsColumns.MINUTES + cs +
162 "minutes",
176 alarm.minutes = cursor.getInt(2);
Alarm.java 48 MINUTES + " ASC" + ", " +
54 MINUTES,
87 values.put(MINUTES, alarm.minutes);
223 public int minutes; field in class:Alarm
235 public Alarm(int hour, int minutes) {
238 this.minutes = minutes;
250 minutes = c.getInt(MINUTES_INDEX);
269 minutes = p.readInt()
    [all...]
AlarmInstance.java 54 * Default timeout for alarms in minutes.
69 MINUTES,
106 values.put(MINUTES, instance.mMinute);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorTestOperation.java 36 TimeUnit.MILLISECONDS.convert(5, TimeUnit.MINUTES);
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConstants.java 147 * <p>A constant that represents the minutes field.</p>
149 public static final Field MINUTES = new Field("MINUTES", 4);
259 * W3C XML Schema max timezone offset is -14:00. Zone offset is in minutes.
264 * W3C XML Schema min timezone offset is +14:00. Zone offset is in minutes.
Duration.java 35 * minutes, and seconds) plus a sign (+/-) field.</p>
162 boolean minuteSet = isSet(DatatypeConstants.MINUTES);
274 * Obtains the value of the MINUTES field as an integer value,
278 * that this method works on the MINUTES field.
280 * @return Minutes of this <code>Duration</code>.
284 return getFieldValueAsInt(DatatypeConstants.MINUTES);
383 * In case of YEARS, MONTHS, DAYS, HOURS, and MINUTES, the returned
389 * MINUTES, or SECONDS.)
394 * For YEARS, MONTHS, DAYS, HOURS, and MINUTES, this method
407 * MINUTES, or SECONDS.
908 BigInteger minutes = (BigInteger) getField(DatatypeConstants.MINUTES); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DictionaryDecayBroadcastReciever.java 46 private static final long DICTIONARY_DECAY_INTERVAL = TimeUnit.MINUTES.toMillis(60);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAlarmManager.java 74 + " AND ca." + CalendarAlerts.MINUTES + "=r." + Reminders.MINUTES + ")"
79 + " OR (r." + Reminders.MINUTES + " ISNULL"
80 + " AND ca." + CalendarAlerts.MINUTES + "<>0)"
87 * least a few minutes to allow for an event that was recently created on
306 // are milliseconds) and Reminders.minutes (whose units are
307 // minutes).
312 // Note 1: we can add support for the case where Reminders.minutes
313 // equals -1 to mean use Calendars.minutes by adding a UNION for
315 // Reminders.minutes != -1 and Reminders.minutes = 1, respectively
408 final int minutes = cursor.getInt(minutesIndex); local
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
DateUtilsTest.java 92 assertEquals("0 minutes ago",
94 assertEquals("in 0 minutes",
103 assertEquals("42 minutes ago",
106 assertEquals("in 42 minutes",
150 long MINUTES = 60;
151 long HOURS = 60 * MINUTES;
152 test_formatElapsedTime("02:01", 2 * MINUTES + 1);
153 test_formatElapsedTime("3:02:01", 3 * HOURS + 2 * MINUTES + 1);
155 test_formatElapsedTime("123:02:01", 123 * HOURS + 2 * MINUTES + 1);
  /external/smack/src/org/jivesoftware/smackx/workgroup/util/
ModelUtil.java 236 final String MINUTES = "min";
257 buf.append(numMinutes + " " + MINUTES + ", ");
  /packages/apps/Exchange/src/com/android/exchange/adapter/
AbstractSyncAdapter.java 48 public static final int MINUTES = SECONDS*60;
49 public static final int HOURS = MINUTES*60;
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 71 static final int MINUTES = SECONDS*60;
72 static final int HOURS = MINUTES*60;
76 static final int STANDARD_DST_PRECISION = MINUTES;
256 // Turn hours/minutes into ms from midnight (per TimeZone)
277 // Turn hours/minutes into ms from midnight (per TimeZone)
311 // Turn hours/minutes into ms from midnight (per TimeZone)
316 tzd.time = (hour*HOURS) + (minute*MINUTES);
354 while ((endTime - startTime) > MINUTES) {
511 * Generate an rfc2445 utcOffset from minutes offset from GMT
513 * @param offsetMinutes minutes offset from GMT (east is positive, west is negativ
525 int minutes = offsetMinutes % 60; local
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
HttpResponseCacheTest.java 717 assertFullyCached(new MockResponse().addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES))
723 assertNotCached(new MockResponse().addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES))
    [all...]
  /frameworks/base/core/java/android/provider/
CalendarContract.java 74 * the given calendar. Reminders are specified in minutes before the event and
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
IssueReporter.java 150 if (!mReporterService.awaitTermination(1, TimeUnit.MINUTES)) {
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 58 MINUTES {
  /packages/apps/Calendar/tests/src/com/android/calendar/event/
EditEventHelperTest.java 173 return quantity + " minutes";
    [all...]
  /packages/apps/Email/emailsync/src/com/android/emailsync/
SyncManager.java 98 private static final int MINUTES = 60*SECONDS;
101 private static final int SYNC_SERVICE_HEARTBEAT_TIME = 15*MINUTES;
102 private static final int CONNECTIVITY_WAIT_TIME = 10*MINUTES;
105 private static final int HOLD_DELAY_MAXIMUM = 4*MINUTES;
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
TimeUnit.java 18 * as sixty seconds, an hour as sixty minutes, and a day as twenty four
87 MINUTES {
157 * <p>For example, to convert 10 minutes to milliseconds, use:
158 * {@code TimeUnit.MILLISECONDS.convert(10L, TimeUnit.MINUTES)}
219 * Equivalent to {@code MINUTES.convert(duration, this)}.
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlarmScheduler.java 65 Reminders.MINUTES,
263 msg.append(", minutes:").append(reminderMinutes);
AlertUtils.java 203 long alarmTime, int minutes) {
214 values.put(CalendarAlerts.MINUTES, minutes);
  /packages/apps/DeskClock/src/com/android/deskclock/
HandleApiCalls.java 87 final int minutes; local
89 minutes = intent.getIntExtra(EXTRA_MINUTES, -1);
91 minutes = 0;
93 if (hour < 0 || hour > 23 || minutes < 0 || minutes > 59) {
108 setSelectionFromIntent(intent, hour, minutes, selection, args);
133 Alarm alarm = new Alarm(hour, minutes);
251 int minutes,
256 selection.append(" AND ").append(Alarm.MINUTES).append("=?");
257 args.add(String.valueOf(minutes));
    [all...]
  /external/openssh/
misc.c 277 #define MINUTES (SECONDS * 60)
278 #define HOURS (MINUTES * 60)
290 * m|M minutes
296 * 90m 90 minutes
297 * 1h30m 90 minutes
333 secs *= MINUTES;
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 123 Reminders.MINUTES, // 1
    [all...]

Completed in 1885 milliseconds

1 2