/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/ |
H A D | WindowMagnificationTest.java | 166 final boolean updatePersistence = true; in onPerformScaleAction_enabled_notifyCallback() 171 .onPerformScaleAction(TEST_DISPLAY, newScale, updatePersistence); in onPerformScaleAction_enabled_notifyCallback() 174 eq(TEST_DISPLAY), eq(newScale), eq(updatePersistence)); in onPerformScaleAction_enabled_notifyCallback() 254 final boolean updatePersistence = false; in onMagnifierScale_notifyCallback() 256 TEST_DISPLAY, scale, updatePersistence); in onMagnifierScale_notifyCallback() 259 eq(TEST_DISPLAY), eq(scale), eq(updatePersistence)); in onMagnifierScale_notifyCallback()
|
H A D | MagnificationSettingsControllerTest.java | 156 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()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/ |
H A D | MagnificationSettingsController.java | 169 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);
|
H A D | WindowMagnificationConnectionImpl.java | 132 void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { in onPerformScaleAction() argument 135 mConnectionCallback.onPerformScaleAction(displayId, scale, updatePersistence); in onPerformScaleAction()
|
H A D | WindowMagnificationSettingsCallback.java | 57 void onMagnifierScale(float scale, boolean updatePersistence); in onMagnifierScale() argument
|
H A D | WindowMagnifierCallback.java | 49 void onPerformScaleAction(int displayId, float scale, boolean updatePersistence); in onPerformScaleAction() argument
|
H A D | WindowMagnification.java | 336 public void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { 339 displayId, scale, updatePersistence); 388 public void onMagnifierScale(int displayId, float scale, boolean updatePersistence) { 391 displayId, scale, updatePersistence);
|
/aosp14/frameworks/base/core/java/android/view/accessibility/ |
H A D | IWindowMagnificationConnectionCallback.aidl | 62 void onPerformScaleAction(int displayId, float scale, boolean updatePersistence); in onPerformScaleAction() argument
|
/aosp14/frameworks/base/services/accessibility/java/com/android/server/accessibility/magnification/ |
H A D | WindowMagnificationManager.java | 172 void onPerformScaleAction(int displayId, float scale, boolean updatePersistence); in onPerformScaleAction() argument 981 public void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { in onPerformScaleAction() argument 987 + ";updatePersistence=" + updatePersistence); in onPerformScaleAction() 989 mCallback.onPerformScaleAction(displayId, scale, updatePersistence); in onPerformScaleAction()
|
H A D | MagnificationController.java | 175 public void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { in onPerformScaleAction() argument 179 if (updatePersistence) { in onPerformScaleAction() 184 if (updatePersistence) { in onPerformScaleAction()
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/magnification/ |
H A D | MagnificationControllerTest.java | 609 final boolean updatePersistence = true; in onPerformScaleAction_fullScreenMagnifierEnabled_handleScaleChange() 612 mMagnificationController.onPerformScaleAction(TEST_DISPLAY, newScale, updatePersistence); in onPerformScaleAction_fullScreenMagnifierEnabled_handleScaleChange() 623 final boolean updatePersistence = false; in onPerformScaleAction_windowMagnifierEnabled_handleScaleChange() 626 mMagnificationController.onPerformScaleAction(TEST_DISPLAY, newScale, updatePersistence); in onPerformScaleAction_windowMagnifierEnabled_handleScaleChange() 1315 public void onPerformScaleAction(int displayId, float scale, boolean updatePersistence) { in onPerformScaleAction() argument 1317 mCallback.onPerformScaleAction(displayId, scale, updatePersistence); in onPerformScaleAction()
|
H A D | WindowMagnificationManagerTest.java | 579 final boolean updatePersistence = true; in onPerformScaleAction_magnifierEnabled_notifyAction() 584 TEST_DISPLAY, newScale, updatePersistence); in onPerformScaleAction_magnifierEnabled_notifyAction() 587 eq(TEST_DISPLAY), eq(newScale), eq(updatePersistence)); in onPerformScaleAction_magnifierEnabled_notifyAction()
|