Home | History | Annotate | Download | only in camera

Lines Matching refs:child

54             View child = getChildAt(i);
55 if (child.getVisibility() == GONE) continue;
56 measureChild(child, widthMeasureSpec, heightMeasureSpec);
58 width += child.getMeasuredWidth();
59 height = Math.max(height, child.getMeasuredHeight());
61 height += child.getMeasuredHeight();
62 width = Math.max(width, child.getMeasuredWidth());
75 View child = getChildAt(i);
76 if (child.getVisibility() == GONE) continue;
77 usedWidth += child.getMeasuredWidth();
86 View child = getChildAt(i);
87 if (child.getVisibility() == GONE) continue;
88 int w = child.getMeasuredWidth();
89 int h = child.getMeasuredHeight();
90 child.layout(left, top, left + w, top + h);
102 View child = getChildAt(i);
103 if (child.getVisibility() == GONE) continue;
104 usedHeight += child.getMeasuredHeight();
113 View child = getChildAt(i);
114 if (child.getVisibility() == GONE) continue;
115 int w = child.getMeasuredWidth();
116 int h = child.getMeasuredHeight();
117 child.layout(left, top, left + w, top + h);