HomeSort by relevance Sort by last modified time
    Searched refs:childHeightMeasureSpec (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/android/widget/
HorizontalScrollView.java 307 int childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec, mPaddingTop
313 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
    [all...]
ScrollView.java 307 int childHeightMeasureSpec =
310 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
    [all...]
TableRow.java 217 int childHeightMeasureSpec = getChildMeasureSpec(heightMeasureSpec,
221 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
RelativeLayout.java 558 int childHeightMeasureSpec = getChildMeasureSpec(params.mTop,
563 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
572 int childHeightMeasureSpec;
574 childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(myHeight, MeasureSpec.EXACTLY);
576 childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(myHeight, MeasureSpec.AT_MOST);
578 child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
    [all...]
LinearLayout.java     [all...]
  /frameworks/base/core/java/android/view/
ViewRoot.java 690 int childHeightMeasureSpec;
795 childHeightMeasureSpec = getRootMeasureSpec(desiredWindowHeight, lp.height);
801 host.measure(childWidthMeasureSpec, childHeightMeasureSpec);
    [all...]
ViewGroup.java     [all...]

Completed in 180 milliseconds