Home
last modified time | relevance | path

Searched refs:maxPages (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
H A DScrollCaptureClient.java222 public ListenableFuture<Session> start(ScrollCaptureResponse response, float maxPages) {
230 response.getBoundsInWindow(), maxPages, mBgExecutor);
261 Rect boundsInWindow, float maxPages, Executor bgExecutor)
273 mTargetHeight = (int) (mBoundsInWindow.height() * maxPages);
H A DScrollCaptureController.java177 float maxPages = Settings.Secure.getFloat(mContext.getContentResolver(), in run()
179 mSessionFuture = mClient.start(response, maxPages); in run()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
H A DScrollCaptureControllerTest.java235 TestScenario withMaxPages(float maxPages) { in withMaxPages() argument
236 if (maxPages < 0) { in withMaxPages()
239 mMaxPages = maxPages; in withMaxPages()
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/screenshot/
H A DFakeSession.java62 FakeSession(int pageHeight, float maxPages, int tileHeight, int visiblePageTop, in FakeSession() argument
71 mTargetHeight = (int) (pageHeight * maxPages); in FakeSession()