Home | History | Annotate | Download | only in launcher3

Lines Matching refs:MeasureSpec

753         int widthSpecMode = MeasureSpec.getMode(widthMeasureSpec);
754 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
755 int widthSize = MeasureSpec.getSize(widthMeasureSpec);
756 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
774 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
779 MeasureSpec.makeMeasureSpec(newWidth, MeasureSpec.EXACTLY),
780 MeasureSpec.makeMeasureSpec(newHeight, MeasureSpec.EXACTLY));