Home | History | Annotate | Download | only in com.example.android.hdrviewfinder

Lines Matching refs:MeasureSpec

87         int widthMode = MeasureSpec.getMode(widthMeasureSpec);
88 int heightMode = MeasureSpec.getMode(heightMeasureSpec);
89 int width = MeasureSpec.getSize(widthMeasureSpec);
90 int height = MeasureSpec.getSize(heightMeasureSpec);
101 if (widthMode == MeasureSpec.EXACTLY && heightMode == MeasureSpec.EXACTLY) {
103 } else if (widthMode == MeasureSpec.EXACTLY) {
106 } else if (heightMode == MeasureSpec.EXACTLY) {
109 } else if (widthMode == MeasureSpec.AT_MOST && heightMode == MeasureSpec.AT_MOST) {
121 } else if (widthMode == MeasureSpec.AT_MOST) {
124 } else if (heightMode == MeasureSpec.AT_MOST) {