OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:automaticrule
(Results
1 - 6
of
6
) sorted by null
/packages/apps/Settings/src/com/android/settings/notification/
ZenModeSettingsFooterPreferenceController.java
98
for (ZenModeConfig.ZenRule
automaticRule
: config.automaticRules.values()) {
99
if (
automaticRule
.isAutomaticActive()) {
101
if (!mZenModeConfigWrapper.isTimeRule(
automaticRule
.conditionId)) {
103
automaticRule
.name);
107
automaticRule
.conditionId);
111
R.string.zen_mode_settings_dnd_automatic_rule,
automaticRule
.name);
ZenModeBehaviorFooterPreferenceController.java
77
for (ZenModeConfig.ZenRule
automaticRule
: config.automaticRules.values()) {
78
if (
automaticRule
.isAutomaticActive() && isDeprecatedZenMode(
79
automaticRule
.zenMode)) {
80
ComponentName component =
automaticRule
.component;
/frameworks/base/services/core/java/com/android/server/notification/
ZenModeConditions.java
71
for (ZenRule
automaticRule
: config.automaticRules.values()) {
72
evaluateRule(
automaticRule
, current, processSubscriptions);
73
updateSnoozing(
automaticRule
);
114
for (ZenRule
automaticRule
: config.automaticRules.values()) {
115
updated |= updateCondition(id, condition,
automaticRule
);
116
updated |= updateSnoozing(
automaticRule
);
ZenModeHelper.java
527
for (ZenRule
automaticRule
: newConfig.automaticRules.values()) {
528
if (
automaticRule
.isAutomaticActive()) {
529
automaticRule
.snoozing = true;
618
for (ZenRule
automaticRule
: config.automaticRules.values()) {
621
automaticRule
.snoozing = false;
622
automaticRule
.condition = null;
623
automaticRule
.creationTime = time;
625
resetToDefaultRules &= !
automaticRule
.enabled;
[
all
...]
/frameworks/base/core/java/android/service/notification/
ZenModeConfig.java
298
ZenRule.appendDiff(d, "
automaticRule
[" + rule + "]", fromRule, toRule);
525
final ZenRule
automaticRule
= readRuleXml(parser);
526
if (id != null &&
automaticRule
!= null) {
527
automaticRule
.id = id;
528
rt.automaticRules.put(id,
automaticRule
);
575
final ZenRule
automaticRule
= automaticRules.valueAt(i);
578
writeRuleXml(
automaticRule
, out);
[
all
...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DndTile.java
393
for (ZenRule
automaticRule
: config.automaticRules.values()) {
394
if (
automaticRule
.isAutomaticActive()) {
397
automaticRule
.name);
Completed in 136 milliseconds