Searched defs:mAttachInfo (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewRootImpl.java192 final View.AttachInfo mAttachInfo; field in class:ViewRootImpl
377 mAttachInfo = new View.AttachInfo(mWindowSession, mWindow, display, this, mHandler, this);
449 mAttachInfo.mDisplayState = mDisplay.getState();
504 mAttachInfo.mRootView = view;
505 mAttachInfo.mScalingRequired = mTranslator != null;
506 mAttachInfo.mApplicationScale =
509 mAttachInfo.mPanelParentWindowToken
525 mAttachInfo.mRecomputeGlobalAttributes = true;
529 mAttachInfo.mContentInsets, mAttachInfo
[all...]
H A DView.java2903 AttachInfo mAttachInfo; field in class:View
3375 * Special tree observer used when mAttachInfo is null.
4952 View oldFocus = (mAttachInfo != null) ? getRootView().findFocus() : null;
4958 if (mAttachInfo != null) {
4959 mAttachInfo.mTreeObserver.dispatchOnGlobalFocusChange(oldFocus, this);
5020 RectF position = (mAttachInfo != null) ? mAttachInfo.mTmpTransformRect : new RectF();
5099 if (oldFocus != null && mAttachInfo != null) {
5100 mAttachInfo.mTreeObserver.dispatchOnGlobalFocusChange(oldFocus, null);
5193 if (imm != null && mAttachInfo !
[all...]

Completed in 1088 milliseconds