Home | History | Annotate | Download | only in launcher2

Lines Matching refs:MeasureSpec

977         int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
978 int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec);
980 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
981 int heightSpecSize = MeasureSpec.getSize(heightMeasureSpec);
983 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
1004 // Initial values correspond to widthSpecMode == MeasureSpec.EXACTLY
1007 if (widthSpecMode == MeasureSpec.AT_MOST) {
1018 int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(newWidth - getPaddingLeft() -
1019 getPaddingRight(), MeasureSpec.EXACTLY);
1020 int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(newHeight - getPaddingTop() -
1021 getPaddingBottom(), MeasureSpec.EXACTLY);