Home
last modified time | relevance | path

Searched refs:mRootView (Results 1 – 10 of 10) sorted by relevance

/cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/
DAbstractRootViewActivity.java38 private LinearLayout mRootView; field in AbstractRootViewActivity
60 mRootView = findViewById(R.id.root_view); in onCreate()
62 Log.d(TAG, "onCreate(): parents for " + getClass() + ": rootView=" + mRootView in onCreate()
67 Log.d(TAG, "Applying visitor to " + this + "/" + mRootView); in onCreate()
69 sRootViewVisitor.visit(this, mRootView); in onCreate()
91 sOnAnimationVisitor.visit(this, mRootView); in onEnterAnimationComplete()
101 return mRootView; in getRootView()
107 return (ViewGroup) mRootView.getParent(); in getGrandParent()
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DWindowInsetsAnimationTests.java71 mRootView = mActivity.getWindow().getDecorView(); in setup()
72 assumeTrue(hasWindowInsets(mRootView, systemBars())); in setup()
80 () -> mRootView.getWindowInsetsController().hide(systemBars())); in testAnimationCallbacksHide()
91 () -> mRootView.getWindowInsetsController().hide(systemBars())); in testAnimationCallbacksShow()
99 () -> mRootView.getWindowInsetsController().show(systemBars())); in testAnimationCallbacksShow()
111 hasWindowInsets(mRootView, navigationBars()) in testAnimationCallbacks_overlapping()
112 && hasWindowInsets(mRootView, statusBars())); in testAnimationCallbacks_overlapping()
122 callback.startRunnable = () -> mRootView.postDelayed( in testAnimationCallbacks_overlapping()
123 () -> mRootView.getWindowInsetsController().hide(statusBars()), 50); in testAnimationCallbacks_overlapping()
126 () -> mRootView.getWindowInsetsController().hide(navigationBars())); in testAnimationCallbacks_overlapping()
[all …]
DWindowInsetsAnimationControllerTests.java109 View mRootView; field in WindowInsetsAnimationControllerTests
165 mRootView = mActivity.getWindow().getDecorView(); in setUpWindowInsetsAnimationControllerTests()
188 if (mRootView != null) { in tearDown()
189 mRootView.setWindowInsetsAnimationCallback(null); in tearDown()
204 != mRootView.getRootWindowInsets().getInsetsIgnoringVisibility(mType)); in assumeTestCompatibility()
214 runOnUiThread(() -> mRootView.getWindowInsetsController() in awaitControl()
221 runOnUiThread(() -> mRootView.getWindowInsetsController() in awaitControl()
235 if (mRootView != null) { in retryIfCancelled()
236 mRootView.setWindowInsetsAnimationCallback(null); in retryIfCancelled()
252 mRootView.getWindowInsetsController().controlWindowInsetsAnimation(mType, 0, in testControl_andCancel()
[all …]
DWindowInsetsAnimationImeTests.java73 mRootView = mActivity.getWindow().getDecorView(); in initActivity()
85 assumeTrue(hasWindowInsets(mRootView, statusBars())); in testAnimationCallbacks_overlapping_opposite()
98 () -> mRootView.getWindowInsetsController().hide(statusBars())); in testAnimationCallbacks_overlapping_opposite()
100 () -> mRootView.getWindowInsetsController().show(ime())); in testAnimationCallbacks_overlapping_opposite()
159 () -> mRootView.getWindowInsetsController().show(ime())); in testShowAndHide()
168 () -> mRootView.getWindowInsetsController().hide(ime())); in testShowAndHide()
DWindowInsetsAnimationTestBase.java67 protected View mRootView; field in WindowInsetsAnimationTestBase
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Dialogs/
DRobustnessResultDialog.java43 mRootView = inflater.inflate(R.layout.dialog_result_robustness, null); in onCreateDialog()
45 … mTextViews.put(ResultType.WAYPOINT, (TextView) mRootView.findViewById(R.id.tvWaypointResult)); in onCreateDialog()
46 mTextViews.put(ResultType.PATH, (TextView) mRootView.findViewById(R.id.tvPathResult)); in onCreateDialog()
47 mTextViews.put(ResultType.TIME, (TextView) mRootView.findViewById(R.id.tvTimeResult)); in onCreateDialog()
48 … mTextViews.put(ResultType.ROTATION, (TextView) mRootView.findViewById(R.id.tvRotationResult)); in onCreateDialog()
DAccuracyResultDialog.java43 mRootView = inflater.inflate(R.layout.dialog_result_accuracy, null); in onCreateDialog()
45 … mTextViews.put(ResultType.WAYPOINT, (TextView) mRootView.findViewById(R.id.tvWaypointResult)); in onCreateDialog()
46 mTextViews.put(ResultType.PATH, (TextView) mRootView.findViewById(R.id.tvPathResult)); in onCreateDialog()
DComplexMovementResultDialog.java43 mRootView = inflater.inflate(R.layout.dialog_result_complex_movement, null); in onCreateDialog()
45 … mTextViews.put(ResultType.WAYPOINT, (TextView) mRootView.findViewById(R.id.tvWaypointResult)); in onCreateDialog()
46 mTextViews.put(ResultType.RINGS, (TextView) mRootView.findViewById(R.id.tvRingsResult)); in onCreateDialog()
DBaseResultsDialog.java45 protected View mRootView; field in BaseResultsDialog
65 mBuilder.setView(mRootView); in onCreateDialog()
/cts/tests/autofillservice/src/android/autofillservice/cts/unittests/
DVisibilitySetterActionTest.java40 private final ViewGroup mRootView = new ViewGroup(sContext) { field in VisibilitySetterActionTest
70 mRootView.addView(view); in testOneChild()
72 action.onClick(mRootView); in testOneChild()
85 mRootView.addView(view); in testOneChildAddedTwice()
87 action.onClick(mRootView); in testOneChildAddedTwice()
100 mRootView.addView(view1); in testMultipleChildren()
105 mRootView.addView(view2); in testMultipleChildren()
107 action.onClick(mRootView); in testMultipleChildren()