Lines Matching refs:MeasureSpec
79 int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
80 int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec);
82 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
83 int heightSpecSize = MeasureSpec.getSize(heightMeasureSpec);
85 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
98 int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(lp.width,
99 MeasureSpec.EXACTLY);
100 int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(lp.height,
101 MeasureSpec.EXACTLY);