Lines Matching refs:MeasureSpec
738 int widthMode = MeasureSpec.getMode(widthMeasureSpec);
739 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
740 int heightMode = MeasureSpec.getMode(heightMeasureSpec);
741 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
760 if (widthMode == MeasureSpec.UNSPECIFIED || heightMode == MeasureSpec.UNSPECIFIED) {
801 childWidthMode = MeasureSpec.AT_MOST;
803 childWidthMode = MeasureSpec.EXACTLY;
807 childHeightMode = MeasureSpec.AT_MOST;
809 childHeightMode = MeasureSpec.EXACTLY;
818 childWidthMode = MeasureSpec.EXACTLY;
819 childHeightMode = MeasureSpec.EXACTLY;
829 MeasureSpec.makeMeasureSpec(childWidth, childWidthMode);
831 MeasureSpec.makeMeasureSpec(childHeight, childHeightMode);