HomeSort by relevance Sort by last modified time
    Searched refs:minutes (Results 126 - 150 of 374) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 106 * Returns a new ReminderEntry, with the specified minutes and method.
108 * @param minutes Number of minutes before the start of the event that the alert will fire.
111 public static ReminderEntry valueOf(int minutes, int method) {
113 return new ReminderEntry(minutes, method);
117 * Returns a ReminderEntry, with the specified number of minutes and a default alert method.
119 * @param minutes Number of minutes before the start of the event that the alert will fire.
121 public static ReminderEntry valueOf(int minutes) {
122 return valueOf(minutes, Reminders.METHOD_DEFAULT)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fsrm.h 320 STDMETHOD_(HRESULT,put_RunLimitInterval)(THIS_ __LONG32 minutes) PURE;
321 STDMETHOD_(HRESULT,get_RunLimitInterval)(THIS_ __LONG32 *minutes) PURE;
336 #define IFsrmAction_put_RunLimitInterval(This,minutes) (This)->lpVtbl->put_RunLimitInterval(This,minutes)
337 #define IFsrmAction_get_RunLimitInterval(This,minutes) (This)->lpVtbl->get_RunLimitInterval(This,minutes)
366 STDMETHOD_(HRESULT,put_RunLimitInterval)(THIS_ __LONG32 minutes) PURE;
367 STDMETHOD_(HRESULT,get_RunLimitInterval)(THIS_ __LONG32 *minutes) PURE;
381 STDMETHOD_(HRESULT,get_KillTimeOut)(THIS_ __LONG32 *minutes) PURE;
382 STDMETHOD_(HRESULT,put_KillTimeOut)(THIS_ __LONG32 minutes) PURE
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
index_table_v3.cc 735 int minutes = CalculateTimestamp(current); local
739 if (minutes > kMaxTimestamp) {
746 minutes = std::min(minutes, (1 << 20) - 1);
749 cell.SetTimestamp(minutes);
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorTest.java 283 @TimeoutReq(minutes=60)
295 @TimeoutReq(minutes=20)
307 @TimeoutReq(minutes=10)
  /frameworks/base/core/java/android/widget/
MediaController.java 416 int minutes = (totalSeconds / 60) % 60; local
421 return mFormatter.format("%d:%02d:%02d", hours, minutes, seconds).toString();
423 return mFormatter.format("%02d:%02d", minutes, seconds).toString();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
DateTimeActivity.java 496 int minutes = (int) (off % 60); local
503 sb.append((char) ('0' + minutes / 10));
504 sb.append((char) ('0' + minutes % 10));
  /external/chromium_org/remoting/webapp/
oauth2.js 137 // we return will be valid for at least 2 minutes.
140 // The choice of 2 minutes is arbitrary, but that length of time
315 * The access token will remain valid for at least 2 minutes.
  /external/chromium_org/third_party/decklink/mac/include/
DeckLinkAPI_v7_6.h 243 virtual HRESULT GetComponents (/* out */ uint8_t *hours, /* out */ uint8_t *minutes, /* out */ uint8_t *seconds, /* out */ uint8_t *frames) = 0;
280 virtual HRESULT SetTimecodeFromComponents (BMDTimecodeFormat format, uint8_t hours, uint8_t minutes, uint8_t seconds, uint8_t frames, BMDTimecodeFlags flags) = 0;
  /external/chromium_org/v8/src/base/platform/
time.cc 39 TimeDelta TimeDelta::FromMinutes(int minutes) {
40 return TimeDelta(minutes * Time::kMicrosecondsPerMinute);
time.h 40 static TimeDelta FromMinutes(int minutes);
  /external/iptables/extensions/
libxt_time.c 371 unsigned int *minutes, unsigned int *seconds)
375 *minutes = fulltime % 60;
  /external/pdfium/fpdfsdk/src/javascript/
JS_Value.cpp 606 void CJS_Date::SetMinutes(int minutes)
608 double date = MakeDate(GetYear(),GetMonth(),GetDay(),GetHours(),minutes,GetSeconds(),0);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 236 int minutes = (offset % 3600) / 60; local
238 return String.format("%s%s%02d:%02d", base, sign, hours, minutes);
  /frameworks/base/core/java/android/text/format/
DateFormat.java 637 int minutes = (offset % 3600) / 60; local
640 tb.append(zeroPad(minutes, 2));
  /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/hostsidetests/theme/src/android/theme/cts/
ThemeHostTest.java 267 @TimeoutReq(minutes = 60)
  /cts/suite/cts/deviceTests/browserbench/src/com/android/cts/browser/
BrowserBenchTest.java 128 @TimeoutReq(minutes = 60)
  /external/chromium_org/media/test/data/eme_player_js/
utils.js 154 var minutes = ('0' + date.getMinutes()).slice(-2);
157 return hours + ':' + minutes + ':' + secs + '.' + milliSecs;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTheme.cpp 424 int minutes = (seconds / 60) % 60; local
428 return String::format("%s%02d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
430 return String::format("%s%01d:%02d:%02d", (time < 0 ? "-" : ""), hours, minutes, seconds);
433 return String::format("%s%02d:%02d", (time < 0 ? "-" : ""), minutes, seconds);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
UIUtils.js 447 var minutes = seconds / 60;
448 if (minutes < 60)
449 return WebInspector._minutesFormat.format(minutes);
451 var hours = minutes / 60;
    [all...]
  /external/jhead/
jhead.c     [all...]
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java 485 public static Condition toTimeCondition(Context context, long time, int minutes, long now,
488 if (minutes < 60) {
489 // display as minutes
490 num = minutes;
495 num = Math.round(minutes / 60f);
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockDatabaseHelper.java 72 ClockContract.AlarmsColumns.MINUTES + " INTEGER NOT NULL, " +
89 ClockContract.InstancesColumns.MINUTES + " INTEGER NOT NULL, " +
128 ClockContract.AlarmsColumns.MINUTES + cs +
158 "minutes",
172 alarm.minutes = cursor.getInt(2);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/
popup.js 51 // ...Hours/Minutes/Seconds could be longer for any locale, then this should
112 var minutes = parseInt(ms / (60 * 1000)) % 60;
114 return chrome.i18n.getMessage(prefix + 'Hours', [hours, minutes]);
117 if (minutes) {
118 return chrome.i18n.getMessage(prefix + 'Minutes', [minutes, seconds]);
  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.cpp 804 String makeRFC2822DateString(unsigned dayOfWeek, unsigned day, unsigned month, unsigned year, unsigned hours, unsigned minutes, unsigned seconds, int utcOffset)
818 appendTwoDigitNumber(stringBuilder, minutes);

Completed in 1191 milliseconds

1 2 3 4 56 7 8 91011>>