Home
last modified time | relevance | path

Searched refs:mBelow (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/sensors/
DThresholdSensorImplTest.java154 assertFalse(listener.mBelow); in testSingleListener()
157 assertTrue(listener.mBelow); in testSingleListener()
182 assertFalse(listenerA.mBelow); in testMultiListener()
183 assertFalse(listenerB.mBelow); in testMultiListener()
187 assertTrue(listenerA.mBelow); in testMultiListener()
188 assertTrue(listenerB.mBelow); in testMultiListener()
212 assertFalse(listenerA.mBelow); in testDuplicateListener()
215 assertTrue(listenerA.mBelow); in testDuplicateListener()
232 assertFalse(listener.mBelow); in testUnregister()
251 assertFalse(listener.mBelow); in testPauseAndResume()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/sensors/
DThresholdSensorEvent.java25 private final boolean mBelow; field in ThresholdSensorEvent
29 mBelow = below; in ThresholdSensorEvent()
34 return mBelow; in getBelow()
47 return String.format((Locale) null, "{near=%s, timestamp_ns=%d}", mBelow, mTimestampNs); in toString()