Lines Matching refs:mParent

2732     protected ViewParent mParent;
4595 if (mParent != null) {
4596 mParent.requestChildFocus(this, this);
4639 if (mParent == null) {
4648 ViewParent parent = mParent;
4710 if (propagate && mParent != null) {
4711 mParent.clearChildFocus(this);
4879 if (AccessibilityManager.getInstance(mContext).isEnabled() && mParent != null) {
4885 mParent.requestSendAccessibilityEvent(this, event);
5194 ViewParent parent = mParent;
5206 parent = parentView.mParent;
5383 current = view.mParent;
5822 ViewParent parent = current.mParent;
5984 if (mParent != null) {
5985 mParent.requestFitSystemWindows();
6295 if (mParent != null) {
6297 mParent.childHasTransientStateChanged(this, hasTransientState);
6299 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
6600 if (mParent != null) {
6601 return mParent.focusSearch(this, direction);
7012 ViewParent ancestor = mParent;
7153 ViewParent parent = mParent;
7175 if (mParent instanceof View) {
7176 View parentView = (View) mParent;
7178 return mParent;
7180 return mParent.getParentForAccessibility();
7285 if (mParent != null) {
7287 mParent.notifySubtreeAccessibilityStateChanged(
7290 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
7515 if (mParent == null) {
7526 mParent.requestSendAccessibilityEvent(this, event);
8342 if (mParent != null) {
8343 mParent.createContextMenu(menu);
8862 if (mParent != null) mParent.focusableViewAvailable(this);
8883 if ((mParent != null) && (mBottom > mTop) && (mRight > mLeft)) {
8884 mParent.focusableViewAvailable(this);
8898 if (mParent instanceof View) {
8900 ((View) mParent).invalidate(true);
8938 if (mParent instanceof ViewGroup) {
8939 ((ViewGroup) mParent).onChildVisibilityChanged(this,
8941 ((View) mParent).invalidate(true);
8942 } else if (mParent != null) {
8943 mParent.invalidateChild(this, null);
8979 if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
8980 mParent.recomputeViewAttributes(this);
9012 if (mParent != null) {
9013 mParent.bringChildToFront(this);
9093 return mParent;
10407 return mParent == null || mParent.getChildVisibleRect(this, r, globalOffset);
10439 final ViewParent p = mParent;
10490 final ViewParent p = mParent;
10559 if (mParent instanceof ViewGroup) {
10560 ((ViewGroup) mParent).onSetLayoutParams(this, params);
10781 (!(mParent instanceof ViewGroup) ||
10782 !((ViewGroup) mParent).isViewTransitioning(this));
10803 final ViewParent p = mParent;
10820 mParent.invalidateChild(this, r);
10846 final ViewParent p = mParent;
10903 final ViewParent p = mParent;
10951 final ViewParent p = mParent;
10955 if (mParent instanceof ViewGroup) {
10956 ((ViewGroup) mParent).invalidateChildFast(this, r);
10958 mParent.invalidateChild(this, r);
10989 if (mParent instanceof View) {
10990 ((View) mParent).mPrivateFlags |= PFLAG_INVALIDATED;
11004 if (isHardwareAccelerated() && mParent instanceof View) {
11005 ((View) mParent).invalidate(true);
12069 if (mParent == null) {
12070 mParent = parent;
12072 mParent = null;
12090 mParent.requestTransparentRegion(this);
12242 if (!mParent.isLayoutDirectionResolved()) return false;
12244 if (mParent.getLayoutDirection() == LAYOUT_DIRECTION_RTL) {
12248 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
12279 if (mParent != null) {
12281 return mParent.canResolveLayoutDirection();
12283 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
13983 if (mParent instanceof ViewGroup) {
13985 (((ViewGroup) mParent).mGroupFlags & ViewGroup.FLAG_CLIP_CHILDREN) != 0);
13988 if (mParent instanceof ViewGroup && (((ViewGroup) mParent).mGroupFlags &
13990 ViewGroup parentVG = (ViewGroup) mParent;
14739 Insets parentInsets = mParent instanceof View ?
14740 ((View) mParent).getOpticalInsets() : Insets.NONE;
14781 boolean changed = isLayoutModeOptical(mParent) ?
15104 ViewParent parent = mParent;
15147 mParent instanceof View) {
15148 return ((View) mParent).onCreateDrawableState(extraSpace);
15778 while (parent.mParent != null && parent.mParent instanceof View) {
15779 parent = (View) parent.mParent;
15829 final ViewParent parent = mParent;
15858 final ViewParent parent = mParent;
15914 ViewParent viewParent = mParent;
15928 viewParent = view.mParent;
16391 if (mParent != null && !mParent.isLayoutRequested()) {
16392 mParent.requestLayout();
16433 if (optical != isLayoutModeOptical(mParent)) {
16550 if (optical != isLayoutModeOptical(mParent)) {
16980 if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
16981 mParent.recomputeViewAttributes(this);
17033 if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
17034 mParent.recomputeViewAttributes(this);
17064 if (mParent != null) {
17065 mParent.recomputeViewAttributes(this);
17697 if (!mParent.isTextDirectionResolved()) {
17703 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17713 parentResolvedDirection = mParent.getTextDirection();
17715 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17763 if (mParent != null) {
17765 return mParent.canResolveTextDirection();
17767 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17929 if (!mParent.isTextAlignmentResolved()) {
17935 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17944 parentResolvedTextAlignment = mParent.getTextAlignment();
17946 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17998 if (mParent != null) {
18000 return mParent.canResolveTextAlignment();
18002 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
18360 if (isPressed() && (mParent != null)