Home
last modified time | relevance | path

Searched refs:TEST_INFO_RESPONSE_FIELD (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/testing/
DTestInformationHandler.java24 import static com.android.launcher3.testing.shared.TestProtocol.TEST_INFO_RESPONSE_FIELD;
145 response.putBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, false); in call()
189 response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
205 response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
215 response.putBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, mDeviceProfile.isTablet); in call()
218 response.putBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
222 response.putBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
227 response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
232 response.putBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
237 response.putBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
[all …]
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DQuickstepTestInformationHandler.java62 response.putStringArrayList(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
70 response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, (int) swipeHeight); in call()
76 response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, (int) swipeHeight); in call()
87 response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, focusedTaskRect.height()); in call()
98 response.putParcelable(TestProtocol.TEST_INFO_RESPONSE_FIELD, gridTaskRect); in call()
103 response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
114 response.putBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, true); in call()
128 response.putInt(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
135 response.putFloat(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
178 response.putBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, in call()
[all …]
/packages/apps/Launcher3/tests/tapl/com/android/launcher3/tapl/
DLauncherInstrumentation.java35 import static com.android.launcher3.testing.shared.TestProtocol.TEST_INFO_RESPONSE_FIELD;
387 .getParcelable(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getTargetInsets()
392 .getParcelable(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getWindowInsets()
397 .getParcelable(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getSystemGestureRegion()
402 TestProtocol.TEST_INFO_RESPONSE_FIELD); in getNumAllAppsColumns()
407 .getBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD); in isTablet()
412 .getBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD); in isPredictiveBackSwipeEnabled()
417 .getBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD); in isTaskbarNavbarUnificationEnabled()
422 .getBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD); in isTwoPanels()
427 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getCellLayoutBoarderHeight()
[all …]
DLaunchedAppState.java27 import static com.android.launcher3.testing.shared.TestProtocol.TEST_INFO_RESPONSE_FIELD;
57 TestProtocol.TEST_INFO_RESPONSE_FIELD) - UNSTASHED_TASKBAR_HANDLE_HINT_SCALE)
62 TestProtocol.TEST_INFO_RESPONSE_FIELD) - 1f) < 0.00001f;
127 .getInt(TEST_INFO_RESPONSE_FIELD);
174 .getBoolean(TestProtocol.TEST_INFO_RESPONSE_FIELD, false);
DTaskbarAllApps.java57 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getAppsListRecyclerTopPadding()
63 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getAllAppsScroll()
DWorkspace.java99 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in switchToAllApps()
488 TestProtocol.TEST_INFO_RESPONSE_FIELD);
494 cellY).build()).getParcelable(TestProtocol.TEST_INFO_RESPONSE_FIELD);
501 .getParcelable(TestProtocol.TEST_INFO_RESPONSE_FIELD);
506 .setCellInd(cellInd).build()).getParcelable(TestProtocol.TEST_INFO_RESPONSE_FIELD);
512 TestProtocol.TEST_INFO_RESPONSE_FIELD);
523 TestProtocol.TEST_INFO_RESPONSE_FIELD);
DHomeAllApps.java97 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getAppsListRecyclerTopPadding()
109 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getAllAppsScroll()
DAllApps.java75 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in AllApps()
250 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getAppsListRecyclerBottomPadding()
363 return testInfo == null ? 0 : testInfo.getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getFreezeFlags()
DBackground.java169 TestProtocol.TEST_INFO_RESPONSE_FIELD); in sendSwipeUpAndHoldToEnterOverviewGestureToLauncher()
187 TestProtocol.TEST_INFO_RESPONSE_FIELD); in sendUpPointerToEnterOverviewToLauncher()
DLaunchable.java181 TestProtocol.TEST_INFO_RESPONSE_FIELD); in getStartDragThreshold()
DLogEventChecker.java59 .getStringArrayList(TestProtocol.TEST_INFO_RESPONSE_FIELD); in finishSync()
DWidgets.java115 .getInt(TestProtocol.TEST_INFO_RESPONSE_FIELD); in getWidgetsScroll()
/packages/apps/Launcher3/tests/multivalentTests/shared/com/android/launcher3/testing/shared/
DTestProtocol.java80 public static final String TEST_INFO_RESPONSE_FIELD = "response"; field in TestProtocol