OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MINUTES_MS
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Settings/src/com/android/settings/notification/
ZenModeVoiceActivity.java
45
private static final int
MINUTES_MS
= 60 * 1000;
110
long time = System.currentTimeMillis() + minutes *
MINUTES_MS
;
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
ZenModePanel.java
73
private static final int
MINUTES_MS
= 60 * SECONDS_MS;
481
if (span <= 0 || span > MAX_BUCKET_MINUTES *
MINUTES_MS
) return null;
483
time, Math.round(span / (float)
MINUTES_MS
), ActivityManager.getCurrentUser(),
699
button1.setEnabled(span > MIN_BUCKET_MINUTES *
MINUTES_MS
);
753
final long bucketTime = now + bucketMinutes *
MINUTES_MS
;
[
all
...]
/frameworks/base/core/java/android/service/notification/
ZenModeConfig.java
75
private static final int
MINUTES_MS
= 60 * SECONDS_MS;
712
final long millis = minutesFromNow == 0 ? ZERO_VALUE_MS : minutesFromNow *
MINUTES_MS
;
[
all
...]
Completed in 37 milliseconds