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 | 26 import com.android.systemui.statusbar.phone.DozeParameters.IntInOutMatcher; 50 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("*"); in test_inOutMatcher_defaultIn() 59 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("!*"); in test_inOutMatcher_defaultOut() 68 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("1,2,3,!*"); in test_inOutMatcher_someIn() 80 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("!1,!2,!3,*"); in test_inOutMatcher_someOut() 92 IntInOutMatcher intInOutMatcher = new IntInOutMatcher("!1,2,!3,*"); in test_inOutMatcher_mixed() 105 new IntInOutMatcher(""); in test_inOutMatcher_failEmpty() 115 new IntInOutMatcher(null); in test_inOutMatcher_failNull() 125 new IntInOutMatcher("!1,*,"); in test_inOutMatcher_failEmptyClause() 135 new IntInOutMatcher("!1,*,!1"); in test_inOutMatcher_failDuplicate() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | DozeParameters.java | 44 private static IntInOutMatcher sPickupSubtypePerformsProxMatcher; 231 sPickupSubtypePerformsProxMatcher = new IntInOutMatcher(spec); in getPickupSubtypePerformsProxCheck() 270 public static class IntInOutMatcher { class in DozeParameters 278 public IntInOutMatcher(String spec) { in IntInOutMatcher() method in DozeParameters.IntInOutMatcher
|