Searched refs:IntInOutMatcher (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | DozeParametersTest.java | 36 import com.android.systemui.statusbar.phone.DozeParameters.IntInOutMatcher; 48 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("*"); in test_inOutMatcher_defaultIn() 57 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("!*"); in test_inOutMatcher_defaultOut() 66 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("1,2,3,!*"); in test_inOutMatcher_someIn() 78 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("!1,!2,!3,*"); in test_inOutMatcher_someOut() 90 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("!1,2,!3,*"); in test_inOutMatcher_mixed() 103 new IntInOutMatcher(""); in test_inOutMatcher_failEmpty() 113 new IntInOutMatcher(null); in test_inOutMatcher_failNull() 123 new IntInOutMatcher("!1,*,"); in test_inOutMatcher_failEmptyClause() 133 new IntInOutMatcher("!1,*,!1"); in test_inOutMatcher_failDuplicate() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | DozeParameters.java | 46 private static IntInOutMatcher sPickupSubtypePerformsProxMatcher; 235 sPickupSubtypePerformsProxMatcher = new IntInOutMatcher(spec); in getPickupSubtypePerformsProxCheck() 274 public static class IntInOutMatcher { class in DozeParameters 282 public IntInOutMatcher(String spec) { in IntInOutMatcher() method in DozeParameters.IntInOutMatcher
|