Lines Matching refs:parent

25  * This view draws another View in an Overlay without changing the parent. It will not be drawn
26 * by its parent because its visibility is set to INVISIBLE, but will be drawn
41 final ViewGroup parent = (ViewGroup) mView.getParent();
43 parent.invalidate();
79 final ViewGroup parent = (ViewGroup) mView.getParent();
80 if (parent != null) {
81 parent.invalidate();
87 ViewGroup parent = (ViewGroup) view.getParent();
89 parent.transformMatrixToGlobal(matrix);
90 matrix.preTranslate(-parent.getScrollX(), -parent.getScrollY());
118 FrameLayout parent = new FrameLayout(view.getContext());
119 parent.setClipChildren(false);
120 copySize(viewGroup, parent);
122 parent.addView(ghostView);
125 insertIntoOverlay(overlay.mOverlayViewGroup, parent, ghostView, tempViews, firstGhost);
143 ViewGroup parent = (ViewGroup) ghostView.getParent();
144 ViewGroup grandParent = (ViewGroup) parent.getParent();
145 grandParent.removeView(parent);
273 * the view itself, in order. The goal is to find the first matching parent and then
288 // i - 1 is the same parent, but these are different children.
293 // one of these is the parent of the other
302 ViewParent parent = view.getParent();
303 if (parent != null && parent instanceof ViewGroup) {
304 getParents((View) parent, parents);
311 * view and comparedWith are siblings with the same parent. This uses the logic
315 ViewGroup parent = (ViewGroup) view.getParent();
317 final int childrenCount = parent.getChildCount();
318 final ArrayList<View> preorderedList = parent.buildOrderedChildList();
320 && parent.isChildrenDrawingOrderEnabled();
327 int childIndex = customOrder ? parent.getChildDrawingOrder(childrenCount, i) : i;
329 ? parent.getChildAt(childIndex) : preorderedList.get(childIndex);