Home | History | Annotate | Download | only in widget

Lines Matching refs:childHeightSpec

1123         int childWidthSpec, childHeightSpec;
1128 childHeightSpec = MeasureSpec.makeMeasureSpec(lpHeight, MeasureSpec.EXACTLY);
1130 childHeightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
1133 childHeightSpec = ViewGroup.getChildMeasureSpec(heightMeasureSpec, 0, p.height);
1141 child.measure(childWidthSpec, childHeightSpec);
1538 int childHeightSpec;
1540 childHeightSpec = MeasureSpec.makeMeasureSpec(lpHeight, MeasureSpec.EXACTLY);
1542 childHeightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
1544 child.measure(childWidthSpec, childHeightSpec);
1546 int childHeightSpec = ViewGroup.getChildMeasureSpec(mMeasuredSpec, 0, p.height);
1554 child.measure(childWidthSpec, childHeightSpec);