HomeSort by relevance Sort by last modified time
    Searched refs:nextAlarm (Results 1 - 14 of 14) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NextAlarmController.java 25 void onNextAlarmChanged(AlarmManager.AlarmClockInfo nextAlarm);
  /frameworks/base/services/core/java/com/android/server/notification/
ScheduleCalendar.java 43 public void maybeSetNextAlarm(long now, long nextAlarm) {
46 && (now > mSchedule.nextAlarm || nextAlarm < mSchedule.nextAlarm)) {
47 mSchedule.nextAlarm = nextAlarm;
91 && mSchedule.nextAlarm != 0
92 && time >= mSchedule.nextAlarm;
  /packages/apps/DeskClock/src/com/android/deskclock/alarms/
AlarmStateManager.java 168 final AlarmInstance nextAlarm = getNextFiringAlarm(context);
171 updateNextAlarmInSystemSettings(context, nextAlarm);
173 updateNextAlarmInAlarmManager(context, nextAlarm);
188 AlarmInstance nextAlarm = null;
190 if (nextAlarm == null || instance.getAlarmTime().before(nextAlarm.getAlarmTime())) {
191 nextAlarm = instance;
194 return nextAlarm;
202 private static void updateNextAlarmInSystemSettings(Context context, AlarmInstance nextAlarm) {
205 if (nextAlarm != null)
    [all...]
  /packages/apps/DeskClock/src/com/android/alarmclock/
DigitalAppWidgetProvider.java 224 rv.setViewVisibility(R.id.nextAlarm, GONE);
227 rv.setTextViewText(R.id.nextAlarm, nextAlarmTime);
228 rv.setViewVisibility(R.id.nextAlarm, VISIBLE);
260 rv.setTextViewTextSize(R.id.nextAlarm, COMPLEX_UNIT_PX, sizes.mFontSizePx);
305 final TextView nextAlarm = (TextView) sizer.findViewById(R.id.nextAlarm);
307 nextAlarm.setVisibility(GONE);
310 nextAlarm.setText(nextAlarmTime);
311 nextAlarm.setVisibility(VISIBLE);
405 final TextView nextAlarm = (TextView) sizer.findViewById(R.id.nextAlarm)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardStatusView.java 203 AlarmManager.AlarmClockInfo nextAlarm =
205 Patterns.update(mContext, nextAlarm != null);
208 refreshAlarmStatus(nextAlarm);
211 void refreshAlarmStatus(AlarmManager.AlarmClockInfo nextAlarm) {
212 if (nextAlarm != null) {
213 String alarm = formatNextAlarm(mContext, nextAlarm);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSFooterImpl.java 245 public void onNextAlarmChanged(AlarmManager.AlarmClockInfo nextAlarm) {
246 mNextAlarm = nextAlarm;
247 if (nextAlarm != null) {
248 String alarmString = KeyguardStatusView.formatNextAlarm(getContext(), nextAlarm);
255 if (mAlarmShowing != (nextAlarm != null)) {
256 mAlarmShowing = nextAlarm != null;
  /packages/apps/DeskClock/src/com/android/deskclock/
FetchMatchingAlarmsAction.java 120 final AlarmInstance nextAlarm = AlarmStateManager.getNextFiringAlarm(mContext);
121 if (nextAlarm == null) {
127 // get time from nextAlarm and see if there are any other alarms matching this time
128 final Calendar nextTime = nextAlarm.getAlarmTime();
Utils.java 332 final TextView nextAlarmView = (TextView) clock.findViewById(R.id.nextAlarm);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
ZenModePanel.java 489 final long nextAlarm = mController.getNextAlarm();
490 if (nextAlarm < now) {
498 if (time > now && nextAlarm < time) {
505 final boolean soon = (nextAlarm - now) < 24 * 60 * 60 * 1000;
509 final CharSequence formattedTime = DateFormat.format(pattern, nextAlarm);
590 GregorianCalendar nextAlarm = new GregorianCalendar();
591 nextAlarm.setTimeInMillis(nextAlarmMs);
592 setToMidnight(nextAlarm);
594 if (weekRange.compareTo(nextAlarm) >= 0) {
    [all...]
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarPolicy.java 677 public void onNextAlarmChanged(AlarmManager.AlarmClockInfo nextAlarm) {
    [all...]
  /frameworks/base/services/core/java/com/android/server/
AlarmManagerService.java     [all...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-4.4_r1-robolectric-1.jar 

Completed in 3761 milliseconds