Searched refs:mViewRootImpl (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/view/
H A DViewRootImplTest.java42 private ViewRootImplAccessor mViewRootImpl; field in class:ViewRootImplTest
49 mViewRootImpl = new ViewRootImplAccessor(
56 mViewRootImpl.getAttachInfo().getContentInsets().set(-10, -20, -30 , -40);
57 mViewRootImpl.getAttachInfo().getStableInsets().set(-10, -20, -30 , -40);
58 final WindowInsets insets = mViewRootImpl.getWindowInsets(true /* forceConstruct */);
67 mViewRootImpl.getAttachInfo().getContentInsets().set(-10, 20, -30 , 40);
68 mViewRootImpl.getAttachInfo().getStableInsets().set(10, -20, 30 , -40);
69 final WindowInsets insets = mViewRootImpl.getWindowInsets(true /* forceConstruct */);
79 mViewRootImpl.getAttachInfo().getContentInsets().set(10, 20, 30 , 40);
80 mViewRootImpl
91 private final ViewRootImpl mViewRootImpl; field in class:ViewRootImplTest.ViewRootImplAccessor
[all...]
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java89 private final ViewRootImpl mViewRootImpl; field in class:AccessibilityInteractionController
120 mViewRootImpl = viewRootImpl;
122 mA11yManager = mViewRootImpl.mContext.getSystemService(AccessibilityManager.class);
325 if (mViewRootImpl.mView == null || mViewRootImpl.mAttachInfo == null) {
328 mViewRootImpl.mAttachInfo.mAccessibilityFetchFlags = flags;
331 root = mViewRootImpl.mView;
381 if (mViewRootImpl.mView == null || mViewRootImpl.mAttachInfo == null) {
384 mViewRootImpl
[all...]
H A DRenderNode.java827 mOwningView.mAttachInfo.mViewRootImpl.registerAnimatingRenderNode(this);
839 mOwningView.mAttachInfo.mViewRootImpl.registerVectorDrawableAnimator(animatorSet);
H A DThreadedRenderer.java798 final Choreographer choreographer = attachInfo.mViewRootImpl.mChoreographer;
826 attachInfo.mViewRootImpl.mSurface.release();
829 attachInfo.mViewRootImpl.invalidate();
832 attachInfo.mViewRootImpl.invalidate();
H A DViewRootImpl.java3512 bounds.offset(0, attachInfo.mViewRootImpl.mScrollY);
3514 if (!bounds.intersect(0, 0, attachInfo.mViewRootImpl.mWidth,
3515 attachInfo.mViewRootImpl.mHeight)) {
8232 private final WeakReference<ViewRootImpl> mViewRootImpl; field in class:ViewRootImpl.AccessibilityInteractionConnection
8235 mViewRootImpl = new WeakReference<ViewRootImpl>(viewRootImpl);
8243 ViewRootImpl viewRootImpl = mViewRootImpl.get();
8264 ViewRootImpl viewRootImpl = mViewRootImpl.get();
8284 ViewRootImpl viewRootImpl = mViewRootImpl.get();
8305 ViewRootImpl viewRootImpl = mViewRootImpl.get();
8325 ViewRootImpl viewRootImpl = mViewRootImpl
[all...]
H A DView.java9819 if (mAttachInfo != null && mAttachInfo.mViewRootImpl != null) {
9820 location[0] += mAttachInfo.mViewRootImpl.mWindowAttributes.surfaceInsets.left;
9821 location[1] += mAttachInfo.mViewRootImpl.mWindowAttributes.surfaceInsets.top;
9833 return mAttachInfo.mViewRootImpl.getWindowInsets(false /* forceConstruct */);
16648 return mAttachInfo.mViewRootImpl;
16728 attachInfo.mViewRootImpl.mChoreographer.postCallback(
16752 attachInfo.mViewRootImpl.mChoreographer.postCallbackDelayed(
16781 attachInfo.mViewRootImpl.mChoreographer.removeCallbacks(
16841 attachInfo.mViewRootImpl.dispatchInvalidateDelayed(this, delayMilliseconds);
16877 attachInfo.mViewRootImpl
26601 final ViewRootImpl mViewRootImpl; field in class:View.AttachInfo
[all...]
/frameworks/layoutlib/bridge/src/android/view/
H A DAttachInfo_Accessor.java56 return view.mAttachInfo != null ? view.mAttachInfo.mViewRootImpl : null;

Completed in 155 milliseconds