Lines Matching refs:mParent

2731     protected ViewParent mParent;
4609 if (mParent != null) {
4610 mParent.requestChildFocus(this, this);
4653 if (mParent == null) {
4662 ViewParent parent = mParent;
4724 if (propagate && mParent != null) {
4725 mParent.clearChildFocus(this);
4893 if (AccessibilityManager.getInstance(mContext).isEnabled() && mParent != null) {
4899 mParent.requestSendAccessibilityEvent(this, event);
5208 ViewParent parent = mParent;
5220 parent = parentView.mParent;
5397 current = view.mParent;
5836 ViewParent parent = current.mParent;
6000 if (mParent != null) {
6001 mParent.requestFitSystemWindows();
6311 if (mParent != null) {
6313 mParent.childHasTransientStateChanged(this, hasTransientState);
6315 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
6616 if (mParent != null) {
6617 return mParent.focusSearch(this, direction);
7028 ViewParent ancestor = mParent;
7169 ViewParent parent = mParent;
7191 if (mParent instanceof View) {
7192 View parentView = (View) mParent;
7194 return mParent;
7196 return mParent.getParentForAccessibility();
7301 if (mParent != null) {
7303 mParent.notifySubtreeAccessibilityStateChanged(
7306 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
7531 if (mParent == null) {
7542 mParent.requestSendAccessibilityEvent(this, event);
8358 if (mParent != null) {
8359 mParent.createContextMenu(menu);
8878 if (mParent != null) mParent.focusableViewAvailable(this);
8899 if ((mParent != null) && (mBottom > mTop) && (mRight > mLeft)) {
8900 mParent.focusableViewAvailable(this);
8914 if (mParent instanceof View) {
8916 ((View) mParent).invalidate(true);
8954 if (mParent instanceof ViewGroup) {
8955 ((ViewGroup) mParent).onChildVisibilityChanged(this,
8957 ((View) mParent).invalidate(true);
8958 } else if (mParent != null) {
8959 mParent.invalidateChild(this, null);
8995 if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
8996 mParent.recomputeViewAttributes(this);
9028 if (mParent != null) {
9029 mParent.bringChildToFront(this);
9109 return mParent;
10423 return mParent == null || mParent.getChildVisibleRect(this, r, globalOffset);
10455 final ViewParent p = mParent;
10506 final ViewParent p = mParent;
10575 if (mParent instanceof ViewGroup) {
10576 ((ViewGroup) mParent).onSetLayoutParams(this, params);
10797 (!(mParent instanceof ViewGroup) ||
10798 !((ViewGroup) mParent).isViewTransitioning(this));
10819 final ViewParent p = mParent;
10836 mParent.invalidateChild(this, r);
10862 final ViewParent p = mParent;
10919 final ViewParent p = mParent;
10967 final ViewParent p = mParent;
10971 if (mParent instanceof ViewGroup) {
10972 ((ViewGroup) mParent).invalidateChildFast(this, r);
10974 mParent.invalidateChild(this, r);
11005 if (mParent instanceof View) {
11006 ((View) mParent).mPrivateFlags |= PFLAG_INVALIDATED;
11020 if (isHardwareAccelerated() && mParent instanceof View) {
11021 ((View) mParent).invalidate(true);
12085 if (mParent == null) {
12086 mParent = parent;
12088 mParent = null;
12106 mParent.requestTransparentRegion(this);
12260 if (!mParent.isLayoutDirectionResolved()) return false;
12262 if (mParent.getLayoutDirection() == LAYOUT_DIRECTION_RTL) {
12266 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
12297 if (mParent != null) {
12299 return mParent.canResolveLayoutDirection();
12301 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
14015 if (mParent instanceof ViewGroup) {
14017 (((ViewGroup) mParent).mGroupFlags & ViewGroup.FLAG_CLIP_CHILDREN) != 0);
14020 if (mParent instanceof ViewGroup && (((ViewGroup) mParent).mGroupFlags &
14022 ViewGroup parentVG = (ViewGroup) mParent;
14771 Insets parentInsets = mParent instanceof View ?
14772 ((View) mParent).getOpticalInsets() : Insets.NONE;
14813 boolean changed = isLayoutModeOptical(mParent) ?
15136 ViewParent parent = mParent;
15179 mParent instanceof View) {
15180 return ((View) mParent).onCreateDrawableState(extraSpace);
15817 while (parent.mParent != null && parent.mParent instanceof View) {
15818 parent = (View) parent.mParent;
15868 final ViewParent parent = mParent;
15897 final ViewParent parent = mParent;
15953 ViewParent viewParent = mParent;
15967 viewParent = view.mParent;
16430 if (mParent != null && !mParent.isLayoutRequested()) {
16431 mParent.requestLayout();
16472 if (optical != isLayoutModeOptical(mParent)) {
16589 if (optical != isLayoutModeOptical(mParent)) {
17019 if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
17020 mParent.recomputeViewAttributes(this);
17072 if (mParent != null && mAttachInfo != null && !mAttachInfo.mRecomputeGlobalAttributes) {
17073 mParent.recomputeViewAttributes(this);
17103 if (mParent != null) {
17104 mParent.recomputeViewAttributes(this);
17736 if (!mParent.isTextDirectionResolved()) {
17742 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17752 parentResolvedDirection = mParent.getTextDirection();
17754 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17802 if (mParent != null) {
17804 return mParent.canResolveTextDirection();
17806 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17968 if (!mParent.isTextAlignmentResolved()) {
17974 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
17983 parentResolvedTextAlignment = mParent.getTextAlignment();
17985 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
18037 if (mParent != null) {
18039 return mParent.canResolveTextAlignment();
18041 Log.e(VIEW_LOG_TAG, mParent.getClass().getSimpleName() +
18399 if (isPressed() && (mParent != null)