/cts/tests/contentcaptureservice/src/android/contentcaptureservice/cts/ |
D | AbstractRootViewActivity.java | 38 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/ |
D | WindowInsetsAnimationTests.java | 71 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 …]
|
D | WindowInsetsAnimationControllerTests.java | 109 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 …]
|
D | WindowInsetsAnimationImeTests.java | 73 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()
|
D | WindowInsetsAnimationTestBase.java | 67 protected View mRootView; field in WindowInsetsAnimationTestBase
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Dialogs/ |
D | RobustnessResultDialog.java | 43 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()
|
D | AccuracyResultDialog.java | 43 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()
|
D | ComplexMovementResultDialog.java | 43 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()
|
D | BaseResultsDialog.java | 45 protected View mRootView; field in BaseResultsDialog 65 mBuilder.setView(mRootView); in onCreateDialog()
|
/cts/tests/autofillservice/src/android/autofillservice/cts/unittests/ |
D | VisibilitySetterActionTest.java | 40 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()
|