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
471
for (ZenRule
automaticRule
: newConfig.automaticRules.values()) {
472
if (
automaticRule
.isAutomaticActive()) {
473
automaticRule
.snoozing = true;
539
for (ZenRule
automaticRule
: config.automaticRules.values()) {
541
automaticRule
.snoozing = false;
542
automaticRule
.condition = null;
543
automaticRule
.creationTime = time;
713
for (ZenRule
automaticRule
: mConfig.automaticRules.values()) {
714
if (
automaticRule
.isAutomaticActive()) {
715
if (zenSeverity(
automaticRule
.zenMode) > zenSeverity(zen))
[
all
...]
/frameworks/base/core/java/android/service/notification/
ZenModeConfig.java
252
ZenRule.appendDiff(d, "
automaticRule
[" + rule + "]", fromRule, toRule);
446
final ZenRule
automaticRule
= readRuleXml(parser);
447
if (id != null &&
automaticRule
!= null) {
448
automaticRule
.id = id;
449
rt.automaticRules.put(id,
automaticRule
);
482
final ZenRule
automaticRule
= automaticRules.valueAt(i);
485
writeRuleXml(
automaticRule
, out);
[
all
...]
Completed in 1330 milliseconds