Home | History | Annotate | Download | only in gestures

Lines Matching defs:mAmbientDisplayConfiguration

55     private AmbientDisplayConfiguration mAmbientDisplayConfiguration;
64 mController.setConfig(mAmbientDisplayConfiguration);
70 when(mAmbientDisplayConfiguration.pulseOnDoubleTapEnabled(anyInt())).thenReturn(true);
77 when(mAmbientDisplayConfiguration.pulseOnDoubleTapEnabled(anyInt())).thenReturn(false);
87 controller.setConfig(mAmbientDisplayConfiguration);
120 when(mAmbientDisplayConfiguration.pulseOnDoubleTapAvailable()).thenReturn(true);
127 .isSuggestionComplete(mAmbientDisplayConfiguration, prefs)).isFalse();
132 when(mAmbientDisplayConfiguration.pulseOnDoubleTapAvailable()).thenReturn(false);
141 .isSuggestionComplete(mAmbientDisplayConfiguration, prefs)).isTrue();
146 when(mAmbientDisplayConfiguration.alwaysOnEnabled(anyInt())).thenReturn(true);
152 when(mAmbientDisplayConfiguration.alwaysOnEnabled(anyInt())).thenReturn(false);
158 when(mAmbientDisplayConfiguration.doubleTapSensorAvailable()).thenReturn(false);
159 when(mAmbientDisplayConfiguration.ambientDisplayAvailable()).thenReturn(false);
167 when(mAmbientDisplayConfiguration.doubleTapSensorAvailable()).thenReturn(true);
168 when(mAmbientDisplayConfiguration.ambientDisplayAvailable()).thenReturn(false);
176 when(mAmbientDisplayConfiguration.doubleTapSensorAvailable()).thenReturn(true);
177 when(mAmbientDisplayConfiguration.ambientDisplayAvailable()).thenReturn(true);