OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:automaticrule
(Results
1 - 3
of
3
) 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
);
111
for (ZenRule
automaticRule
: config.automaticRules.values()) {
112
updated |= updateCondition(id, condition,
automaticRule
);
113
updated |= updateSnoozing(
automaticRule
);
ZenModeHelper.java
473
for (ZenRule
automaticRule
: newConfig.automaticRules.values()) {
474
if (
automaticRule
.isAutomaticActive()) {
475
automaticRule
.snoozing = true;
542
for (ZenRule
automaticRule
: config.automaticRules.values()) {
544
automaticRule
.snoozing = false;
545
automaticRule
.condition = null;
546
automaticRule
.creationTime = time;
716
for (ZenRule
automaticRule
: mConfig.automaticRules.values()) {
717
if (
automaticRule
.isAutomaticActive()) {
718
if (zenSeverity(
automaticRule
.zenMode) > zenSeverity(zen))
[
all
...]
/frameworks/base/core/java/android/service/notification/
ZenModeConfig.java
256
ZenRule.appendDiff(d, "
automaticRule
[" + rule + "]", fromRule, toRule);
450
final ZenRule
automaticRule
= readRuleXml(parser);
451
if (id != null &&
automaticRule
!= null) {
452
automaticRule
.id = id;
453
rt.automaticRules.put(id,
automaticRule
);
486
final ZenRule
automaticRule
= automaticRules.valueAt(i);
489
writeRuleXml(
automaticRule
, out);
[
all
...]
Completed in 88 milliseconds