Searched refs:childHeightMeasureSpec (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DFrameLayout.java352 int childHeightMeasureSpec;
367 childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight() -
372 childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec,
378 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
H A DHorizontalScrollView.java316 int childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec, mPaddingTop
322 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
1195 int childHeightMeasureSpec;
1197 childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec, mPaddingTop
1202 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
1210 final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
1216 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
H A DScrollView.java339 int childHeightMeasureSpec =
342 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
1175 int childHeightMeasureSpec;
1180 childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
1182 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
1193 final int childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(
1196 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
H A DTableRow.java219 int childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec,
223 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
H A DRelativeLayout.java597 int childHeightMeasureSpec = getChildMeasureSpec(params.mTop,
602 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
611 int childHeightMeasureSpec;
613 childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(myHeight, MeasureSpec.EXACTLY);
615 childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(myHeight, MeasureSpec.AT_MOST);
617 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
H A DLinearLayout.java1197 final int childHeightMeasureSpec = getChildMeasureSpec(
1214 childHeightMeasureSpec);
1219 childHeightMeasureSpec);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1052 int childHeightMeasureSpec;
1074 childHeightMeasureSpec = getRootMeasureSpec(desiredWindowHeight, lp.height);
1075 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
1086 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
1099 childHeightMeasureSpec = getRootMeasureSpec(desiredWindowHeight, lp.height);
1100 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
1640 int childHeightMeasureSpec = getRootMeasureSpec(mHeight, lp.height);
1649 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
1666 childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(height,
1675 performMeasure(childWidthMeasureSpec, childHeightMeasureSpec);
1845 performMeasure(int childWidthMeasureSpec, int childHeightMeasureSpec) argument
[all...]
H A DViewGroup.java4782 final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
4785 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
4810 final int childHeightMeasureSpec = getChildMeasureSpec(parentHeightMeasureSpec,
4814 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);

Completed in 379 milliseconds