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

  /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 540 for (ZenRule automaticRule : newConfig.automaticRules.values()) {
541 if (automaticRule.isAutomaticActive()) {
542 automaticRule.snoozing = true;
626 for (ZenRule automaticRule : config.automaticRules.values()) {
628 automaticRule.snoozing = false;
629 automaticRule.condition = null;
630 automaticRule.creationTime = time;
805 for (ZenRule automaticRule : mConfig.automaticRules.values()) {
806 if (automaticRule.isAutomaticActive()) {
807 if (zenSeverity(automaticRule.zenMode) > zenSeverity(zen))
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DndTile.java 353 for (ZenRule automaticRule : config.automaticRules.values()) {
354 if (automaticRule.isAutomaticActive()) {
357 automaticRule.name);
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java 256 ZenRule.appendDiff(d, "automaticRule[" + rule + "]", fromRule, toRule);
445 final ZenRule automaticRule = readRuleXml(parser);
446 if (id != null && automaticRule != null) {
447 automaticRule.id = id;
448 rt.automaticRules.put(id, automaticRule);
481 final ZenRule automaticRule = automaticRules.valueAt(i);
484 writeRuleXml(automaticRule, out);
    [all...]

Completed in 89 milliseconds