Home
last modified time | relevance | path

Searched refs:updatePersistence (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/
DMagnificationSettingsControllerTest.java156 final boolean updatePersistence = true; in testPanelOnMagnifierScale_delegateToCallback()
158 .onMagnifierScale(scale, updatePersistence); in testPanelOnMagnifierScale_delegateToCallback()
161 eq(mContext.getDisplayId()), eq(scale), eq(updatePersistence)); in testPanelOnMagnifierScale_delegateToCallback()
DMagnificationTest.java173 final boolean updatePersistence = true; in onPerformScaleAction_enabled_notifyCallback()
178 .onPerformScaleAction(TEST_DISPLAY, newScale, updatePersistence); in onPerformScaleAction_enabled_notifyCallback()
181 eq(TEST_DISPLAY), eq(newScale), eq(updatePersistence)); in onPerformScaleAction_enabled_notifyCallback()
265 final boolean updatePersistence = false; in onMagnifierScale_notifyCallback()
267 TEST_DISPLAY, scale, updatePersistence); in onMagnifierScale_notifyCallback()
270 eq(TEST_DISPLAY), eq(scale), eq(updatePersistence)); in onMagnifierScale_notifyCallback()
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/
DMagnificationSettingsController.java169 void onMagnifierScale(int displayId, float scale, boolean updatePersistence); in onMagnifierScale() argument
219 public void onMagnifierScale(float scale, boolean updatePersistence) {
221 A11Y_ACTION_SCALE_RANGE.clamp(scale), updatePersistence);
DWindowMagnificationSettingsCallback.java57 void onMagnifierScale(float scale, boolean updatePersistence); in onMagnifierScale() argument
DWindowMagnifierCallback.java49 void onPerformScaleAction(int displayId, float scale, boolean updatePersistence); in onPerformScaleAction() argument
DMagnificationConnectionImpl.java138 void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { in onPerformScaleAction() argument
141 mConnectionCallback.onPerformScaleAction(displayId, scale, updatePersistence); in onPerformScaleAction()
DMagnification.java455 public void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) {
458 displayId, scale, updatePersistence);
514 boolean updatePersistence) {
517 displayId, scale, updatePersistence);
/frameworks/base/core/java/android/view/accessibility/
DIMagnificationConnectionCallback.aidl66 void onPerformScaleAction(int displayId, float scale, boolean updatePersistence); in onPerformScaleAction() argument
/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/
DMagnificationConnectionManager.java174 void onPerformScaleAction(int displayId, float scale, boolean updatePersistence); in onPerformScaleAction() argument
1003 public void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { in onPerformScaleAction() argument
1009 + ";updatePersistence=" + updatePersistence); in onPerformScaleAction()
1011 mCallback.onPerformScaleAction(displayId, scale, updatePersistence); in onPerformScaleAction()
DMagnificationController.java176 public void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { in onPerformScaleAction() argument
180 if (updatePersistence) { in onPerformScaleAction()
185 if (updatePersistence) { in onPerformScaleAction()
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/magnification/
DMagnificationControllerTest.java635 final boolean updatePersistence = true; in onPerformScaleAction_fullScreenMagnifierEnabled_handleScaleChange()
638 mMagnificationController.onPerformScaleAction(TEST_DISPLAY, newScale, updatePersistence); in onPerformScaleAction_fullScreenMagnifierEnabled_handleScaleChange()
649 final boolean updatePersistence = false; in onPerformScaleAction_windowMagnifierEnabled_handleScaleChange()
652 mMagnificationController.onPerformScaleAction(TEST_DISPLAY, newScale, updatePersistence); in onPerformScaleAction_windowMagnifierEnabled_handleScaleChange()
1364 public void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { in onPerformScaleAction() argument
1366 mCallback.onPerformScaleAction(displayId, scale, updatePersistence); in onPerformScaleAction()
DMagnificationConnectionManagerTest.java580 final boolean updatePersistence = true; in onPerformScaleAction_magnifierEnabled_notifyAction()
585 TEST_DISPLAY, newScale, updatePersistence); in onPerformScaleAction_magnifierEnabled_notifyAction()
588 eq(TEST_DISPLAY), eq(newScale), eq(updatePersistence)); in onPerformScaleAction_magnifierEnabled_notifyAction()