Home | History | Annotate | Download | only in view

Lines Matching refs:attachInfo

2601     AttachInfo mAttachInfo;
7521 void dispatchCollectViewAttributes(AttachInfo attachInfo, int visibility) {
7522 performCollectViewAttributes(attachInfo, visibility);
7525 void performCollectViewAttributes(AttachInfo attachInfo, int visibility) {
7528 attachInfo.mKeepScreenOn = true;
7530 attachInfo.mSystemUiVisibility |= mSystemUiVisibility;
7533 attachInfo.mHasSystemUiListeners = true;
7539 final AttachInfo ai = mAttachInfo;
8444 final AttachInfo ai = mAttachInfo;
10135 final AttachInfo ai = mAttachInfo;
10178 final AttachInfo ai = mAttachInfo;
10233 final AttachInfo ai = mAttachInfo;
10281 final AttachInfo ai = mAttachInfo;
10429 final AttachInfo attachInfo = mAttachInfo;
10430 if (attachInfo != null) {
10431 return attachInfo.mHandler.post(action);
10461 final AttachInfo attachInfo = mAttachInfo;
10462 if (attachInfo != null) {
10463 return attachInfo.mHandler.postDelayed(action, delayMillis);
10483 final AttachInfo attachInfo = mAttachInfo;
10484 if (attachInfo != null) {
10485 attachInfo.mViewRootImpl.mChoreographer.postCallback(
10509 final AttachInfo attachInfo = mAttachInfo;
10510 if (attachInfo != null) {
10511 attachInfo.mViewRootImpl.mChoreographer.postCallbackDelayed(
10539 final AttachInfo attachInfo = mAttachInfo;
10540 if (attachInfo != null) {
10541 attachInfo.mHandler.removeCallbacks(action);
10542 attachInfo.mViewRootImpl.mChoreographer.removeCallbacks(
10600 // We try only with the AttachInfo because there's no point in invalidating
10602 final AttachInfo attachInfo = mAttachInfo;
10603 if (attachInfo != null) {
10604 attachInfo.mViewRootImpl.dispatchInvalidateDelayed(this, delayMilliseconds);
10629 // We try only with the AttachInfo because there's no point in invalidating
10631 final AttachInfo attachInfo = mAttachInfo;
10632 if (attachInfo != null) {
10633 final AttachInfo.InvalidateInfo info = AttachInfo.InvalidateInfo.acquire();
10640 attachInfo.mViewRootImpl.dispatchInvalidateRectDelayed(info, delayMilliseconds);
10654 // We try only with the AttachInfo because there's no point in invalidating
10656 final AttachInfo attachInfo = mAttachInfo;
10657 if (attachInfo != null) {
10658 attachInfo.mViewRootImpl.dispatchInvalidateOnAnimation(this);
10678 // We try only with the AttachInfo because there's no point in invalidating
10680 final AttachInfo attachInfo = mAttachInfo;
10681 if (attachInfo != null) {
10682 final AttachInfo.InvalidateInfo info = AttachInfo.InvalidateInfo.acquire();
10689 attachInfo.mViewRootImpl.dispatchInvalidateRectOnAnimation(info);
11716 AttachInfo ai = mAttachInfo;
11737 * @param info the {@link android.view.View.AttachInfo} to associated with
11740 void dispatchAttachedToWindow(AttachInfo info, int visibility) {
11781 AttachInfo info = mAttachInfo;
12186 AttachInfo info = mAttachInfo;
12600 final AttachInfo attachInfo = mAttachInfo;
12601 final boolean scalingRequired = attachInfo != null && attachInfo.mScalingRequired;
12604 width = (int) ((width * attachInfo.mApplicationScale) + 0.5f);
12605 height = (int) ((height * attachInfo.mApplicationScale) + 0.5f);
12610 final boolean use32BitCache = attachInfo != null && attachInfo.mUse32BitDrawingCache;
12678 if (attachInfo != null) {
12679 canvas = attachInfo.mCanvas;
12688 attachInfo.mCanvas = null;
12702 final float scale = attachInfo.mApplicationScale;
12725 if (attachInfo != null) {
12727 attachInfo.mCanvas = canvas;
12740 final AttachInfo attachInfo = mAttachInfo;
12741 final float scale = attachInfo != null ? attachInfo.mApplicationScale : 1.0f;
12756 if (attachInfo != null) {
12757 canvas = attachInfo.mCanvas;
12766 attachInfo.mCanvas = null;
12797 if (attachInfo != null) {
12799 attachInfo.mCanvas = canvas;
14649 final AttachInfo info = mAttachInfo;
15546 final AttachInfo attachInfo = mAttachInfo;
15547 if (region != null && attachInfo != null) {
15552 final int[] location = attachInfo.mTransparentLocation;
16065 final AttachInfo attachInfo = mAttachInfo;
16066 if (r != null && attachInfo != null) {
16085 final int[] location = attachInfo.mTransparentLocation;
17233 static class AttachInfo {
17569 AttachInfo(IWindowSession session, IWindow window,