Home | History | Annotate | Download | only in testingcamera2

Lines Matching refs:MeasureSpec

74         int widthMode = MeasureSpec.getMode(widthMeasureSpec);
75 int heightMode = MeasureSpec.getMode(heightMeasureSpec);
76 int width = MeasureSpec.getSize(widthMeasureSpec);
77 int height = MeasureSpec.getSize(heightMeasureSpec);
88 if (widthMode == MeasureSpec.EXACTLY && heightMode == MeasureSpec.EXACTLY) {
90 } else if (widthMode == MeasureSpec.EXACTLY) {
93 } else if (heightMode == MeasureSpec.EXACTLY) {
96 } else if (widthMode == MeasureSpec.AT_MOST && heightMode == MeasureSpec.AT_MOST) {
108 } else if (widthMode == MeasureSpec.AT_MOST) {
111 } else if (heightMode == MeasureSpec.AT_MOST) {