Home
last modified time | relevance | path

Searched refs:mHeight (Results 1 – 25 of 77) sorted by relevance

1234

/packages/apps/Camera2/src/com/android/camera/util/
DAspectRatio.java37 private final int mHeight; field in AspectRatio
45 mHeight = height; in AspectRatio()
68 return mHeight; in getHeight()
76 return (float) mWidth / (float) mHeight; in toFloat()
88 if (mHeight != that.mHeight) in equals()
98 return Objects.hashCode(mWidth, mHeight); in hashCode()
110 return of(mHeight, mWidth); in transpose()
154 return this.mWidth * other.mHeight > other.mWidth * this.mHeight; in isWiderThan()
164 return this.mWidth * other.mHeight < other.mWidth * this.mHeight; in isTallerThan()
177 int cropHeight = area.width() * mHeight / mWidth; in getLargestCenterCrop()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
DColorCompareView.java45 private float mHeight; field in ColorCompareView
99 if (x> mWidth-2*mHeight) { in onTouchEvent()
115 mHeight = h; in onSizeChanged()
126 mOrigRegion.lineTo(mWidth, mHeight); in updatePaint()
127 mOrigRegion.lineTo(mWidth - mHeight * 2, mHeight); in updatePaint()
128 mOrigRegion.lineTo(mWidth - mHeight, 0); in updatePaint()
132 mRegion.lineTo(mWidth - mHeight, 0); in updatePaint()
133 mRegion.lineTo(mWidth - mHeight * 2, mHeight); in updatePaint()
134 mRegion.lineTo(0, mHeight); in updatePaint()
142 canvas.drawRect(mBorder, 0, mWidth, mHeight, mCheckPaint); in onDraw()
DColorRectView.java63 private int mHeight; field in ColorRectView
101 y = Math.max(Math.min(y, mHeight - mBorder), mBorder); in onTouchEvent()
104 float sat = 1 - (mDotY - mBorder) / (mHeight - 2 * mBorder); in onTouchEvent()
109 double hue = Math.PI * 2 * (mDotX - mBorder) / (mHeight - 2 * mBorder); in onTouchEvent()
123 mHeight = h; in onSizeChanged()
152 0, mBorder, 0, mHeight - mBorder, colors, null, Shader.TileMode.CLAMP); in setUpColorPanel()
155 0, mBorder, 0, mHeight - mBorder, colors2, null, Shader.TileMode.CLAMP); in setUpColorPanel()
167 rect.bottom = mHeight - mBorder; in onDraw()
183 mDotX = (float) (mBorder + (mHeight - 2 * mBorder) * Math.toRadians(hue) / (Math.PI * 2)); in updateDot()
184 mDotY = (float) ((1 - sat) * (mHeight - 2 * mBorder) + mBorder); in updateDot()
DColorValueView.java42 private float mHeight; field in ColorValueView
98 if (mDotY > mHeight - mBorder) { in onTouchEvent()
99 mDotY = mHeight - mBorder; in onTouchEvent()
101 mHSVO[2] = (mDotY - mBorder) / (mHeight - mBorder * 2); in onTouchEvent()
113 float pos = mHSVO[2] * (mHeight - mBorder * 2); in setupButton()
126 mHeight = h; in onSizeChanged()
139 Shader sg = new LinearGradient(mBorder, mBorder, mBorder, mHeight - mBorder, color1, color2, in updatePaint()
148 canvas.drawRect(mBorder, mBorder, mWidth - mBorder, mHeight - mBorder, mBarPaint1); in onDraw()
149 canvas.drawLine(mDotX, mDotY, mDotX, mHeight - mBorder, mLinePaint2); in onDraw()
DColorSVRectView.java57 private int mHeight; field in ColorSVRectView
148 y = Math.max(Math.min(y, mHeight - mBorder), mBorder); in onTouchEvent()
151 float sat = 1 - (mDotY - mBorder) / (mHeight - 2 * mBorder); in onTouchEvent()
156 float value = (mDotX - mBorder) / (mHeight - 2 * mBorder); in onTouchEvent()
170 mHeight = h; in onSizeChanged()
185 mDotX = (float) (mBorder + (mHeight - 2 * mBorder) * sat); in updateDot()
186 mDotY = (float) ((1 - val) * (mHeight - 2 * mBorder) + mBorder); in updateDot()
/packages/apps/Camera2/src/com/android/camera/ui/
DModeTransitionView.java75 private int mHeight = 0; field in ModeTransitionView
125 mShadePath.addRect(0, mHeight - getScrollDistance(), mWidth, mHeight, in updateShade()
135 if (shadeHeight < mHeight / 2 || mHeight == 0) { in updateShade()
138 int alpha = ((int) shadeHeight - mHeight / 2) * ALPHA_FULLY_OPAQUE in updateShade()
139 / (mHeight / 2); in updateShade()
156 scrollDistance = Math.min(scrollDistance, mHeight); in setScrollDistance()
160 scrollDistance = Math.max(scrollDistance, -mHeight); in setScrollDistance()
196 mHeight = bottom - top; in onLayout()
198 mIconRect.set(mWidth / 2 - mIconSize / 2, mHeight / 2 - mIconSize / 2, in onLayout()
199 mWidth / 2 + mIconSize / 2, mHeight / 2 + mIconSize / 2); in onLayout()
[all …]
/packages/apps/Camera2/src/com/android/camera/
DTextureViewHelper.java54 private int mHeight = 0; field in TextureViewHelper
108 if (mWidth != width || mHeight != height || mOrientation != rotation) { in onLayoutChange()
110 mHeight = height; in onLayoutChange()
129 mPreviewArea.set(0, 0, mWidth, mHeight); in clearTransform()
201 RectF previewRect = new RectF(0, 0, mWidth, mHeight);
230 mPreviewArea.set(0, 0, mWidth, mHeight);
294 transform.preRotate(270, mWidth / 2, mHeight / 2);
298 transform.preRotate(180, mWidth / 2, mHeight / 2);
302 transform.preRotate(90, mWidth / 2, mHeight / 2);
333 if (mAspectRatio == MATCH_SCREEN || mAspectRatio < 0 || mWidth == 0 || mHeight == 0) {
[all …]
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
DMessagePartData.java95 private int mHeight; field in MessagePartData
152 mHeight = height; in MessagePartData()
232 mHeight = cursor.getInt(INDEX_HEIGHT); in bind()
245 if (mHeight != UNSPECIFIED_SIZE) { in populate()
246 values.put(PartColumns.HEIGHT, mHeight); in populate()
270 insert.bindLong(INDEX_HEIGHT, mHeight); in getInsertStatement()
328 return mHeight; in getHeight()
350 mHeight = in.readInt(); in MessagePartData()
361 dest.writeInt(mHeight); in writeToParcel()
375 return mWidth == lhs.mWidth && mHeight == lhs.mHeight && in equals()
[all …]
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
DBitmapWorkerOptions.java42 private int mHeight; field in BitmapWorkerOptions
59 private int mHeight; field in BitmapWorkerOptions.Builder
66 mHeight = MAX_IMAGE_DIMENSION_PX; in Builder()
81 final int largestDim = Math.max(mWidth, mHeight); in build()
85 mHeight *= scale; in build()
90 options.mHeight = mHeight; in build()
128 mHeight = height; in height()
168 return mHeight; in getHeight()
/packages/apps/Launcher3/src/com/android/launcher3/graphics/
DGradientView.java58 private int mHeight; field in GradientView
109 if (mWidth + mHeight > 0) { in updateColors()
118 this.mHeight = getMeasuredHeight(); in onMeasure()
119 if (mWidth + mHeight > 0) { in onMeasure()
127 float radius = Math.max(mHeight, mWidth) * gradientCenterY; in createRadialShader()
128 float posScreenBottom = (radius - mHeight) / radius; // center lives below screen in createRadialShader()
132 mHeight * gradientCenterY, in createRadialShader()
143 mHeight * gradientCenterY, in createRadialShader()
167 float startMaskY = (1f - linearProgress) * mHeight - mMaskHeight * linearProgress; in onDraw()
172 mFinalMaskRect.set(0, div, mWidth, mHeight); in onDraw()
/packages/apps/Dialer/java/com/android/dialer/calllogutils/
DCallTypeIconsView.java52 private int mHeight; field in CallTypeIconsView
75 mHeight = 0; in clear()
84 mHeight = Math.max(mHeight, drawable.getIntrinsicWidth()); in add()
97 mHeight = Math.max(mHeight, sResources.videoCall.getIntrinsicHeight()); in setShowVideo()
115 mHeight = Math.max(mHeight, sResources.hdCall.getIntrinsicHeight()); in setShowHd()
124 mHeight = Math.max(mHeight, sResources.wifiCall.getIntrinsicHeight()); in setShowWifi()
162 setMeasuredDimension(mWidth, mHeight); in onMeasure()
/packages/apps/Launcher2/src/com/android/launcher2/
DFastBitmapDrawable.java31 private int mHeight; field in FastBitmapDrawable
39 mHeight = mBitmap.getHeight(); in FastBitmapDrawable()
41 mWidth = mHeight = 0; in FastBitmapDrawable()
83 return mHeight; in getIntrinsicHeight()
93 return mHeight; in getMinimumHeight()
100 mHeight = mBitmap.getHeight(); in setBitmap()
102 mWidth = mHeight = 0; in setBitmap()
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/
DImagePersistTask.java41 private int mHeight; field in ImagePersistTask
59 mHeight = height; in ImagePersistTask()
83 mCallback.onMediaReady(result.getResult(), "image/jpeg", mWidth, mHeight); in onPostExecute() local
106 Assert.checkState(mHeight == bitmap.getWidth()); in writeClippedBitmap()
107 clippedWidth = (int) (mHeight * mHeightPercent); in writeClippedBitmap()
111 Assert.checkState(mHeight == bitmap.getHeight()); in writeClippedBitmap()
113 clippedHeight = (int) (mHeight * mHeightPercent); in writeClippedBitmap()
119 mHeight = clippedHeight; in writeClippedBitmap()
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
DImagePersistTask.java42 private int mHeight; field in ImagePersistTask
62 mHeight = height; in ImagePersistTask()
101 Assert.equals(mHeight, bitmap.getWidth()); in doInBackgroundTimed()
102 clippedWidth = (int) (mHeight * mHeightPercent); in doInBackgroundTimed()
106 Assert.equals(mHeight, bitmap.getHeight()); in doInBackgroundTimed()
108 clippedHeight = (int) (mHeight * mHeightPercent); in doInBackgroundTimed()
113 mHeight = clippedHeight; in doInBackgroundTimed()
166 mCallback.onMediaReady(mOutputUri, ContentType.IMAGE_JPEG, mWidth, mHeight); in onPostExecute()
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DSurfaceTextureScreenNail.java38 private int mWidth, mHeight; field in SurfaceTextureScreenNail
47 mExtTexture.setSize(mWidth, mHeight); in acquireSurfaceTexture()
49 setDefaultBufferSize(mSurfaceTexture, mWidth, mHeight); in acquireSurfaceTexture()
87 mHeight = height; in setSize()
92 mExtTexture.setSize(mWidth, mHeight); in resizeTexture()
93 setDefaultBufferSize(mSurfaceTexture, mWidth, mHeight); in resizeTexture()
104 return mHeight; in getHeight()
DTiledScreenNail.java49 private int mHeight; field in TiledScreenNail
57 mHeight = bitmap.getHeight(); in TiledScreenNail()
82 mHeight = Math.round(scale * height); in setSize()
101 mHeight = newer.mHeight; in combine()
127 return mHeight; in getHeight()
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
DTiledTexture.java62 private final int mHeight; field in TiledTexture
125 mHeight = height + 2 * BORDER_SIZE; in setSize()
204 mHeight = bitmap.getHeight(); in TiledTexture()
208 for (int y = 0, h = mHeight; y < h; y += CONTENT_SIZE) { in TiledTexture()
215 Math.min(CONTENT_SIZE, mHeight - y)); in TiledTexture()
281 float scaleY = (float) height / mHeight; in drawMixed()
300 float scaleY = (float) height / mHeight; in draw()
344 return mHeight; in getHeight()
349 draw(canvas, x, y, mWidth, mHeight); in draw()
DColorTexture.java26 private int mHeight; field in ColorTexture
31 mHeight = 1; in ColorTexture()
36 draw(canvas, x, y, mWidth, mHeight); in draw()
51 mHeight = height; in setSize()
61 return mHeight; in getHeight()
/packages/apps/Calendar/src/com/android/calendar/month/
DSimpleWeekView.java136 protected int mHeight = DEFAULT_HEIGHT; field in SimpleWeekView
220 mHeight = params.get(VIEW_PARAMS_HEIGHT); in setWeekParams()
221 if (mHeight < MIN_HEIGHT) { in setWeekParams()
222 mHeight = MIN_HEIGHT; in setWeekParams()
414 r.bottom = mHeight - 1; in drawBackground()
430 int y = ((mHeight + MINI_DAY_NUMBER_TEXT_SIZE) / 2) - DAY_SEPARATOR_WIDTH; in drawWeekNums()
476 r.bottom = mHeight - 1; in drawDaySeparators()
489 canvas.drawLine(x, 0, x, mHeight, p); in drawDaySeparators()
520 setMeasuredDimension(MeasureSpec.getSize(widthMeasureSpec), mHeight); in onMeasure() local
/packages/apps/Music/src/com/android/music/
DTouchInterceptor.java63 private int mHeight; field in TouchInterceptor
139 mHeight = getHeight(); in onInterceptTouchEvent()
141 mUpperBound = Math.min(y - touchSlop, mHeight / 3); in onInterceptTouchEvent()
142 mLowerBound = Math.max(y + touchSlop, mHeight * 2 / 3); in onInterceptTouchEvent()
194 if (y >= mHeight / 3) { in adjustScrollBounds()
195 mUpperBound = mHeight / 3; in adjustScrollBounds()
197 if (y <= mHeight * 2 / 3) { in adjustScrollBounds()
198 mLowerBound = mHeight * 2 / 3; in adjustScrollBounds()
341 speed = y > (mHeight + mLowerBound) / 2 ? 16 : 4; in onTouchEvent()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
DKeyboardId.java76 public final int mHeight; field in KeyboardId
91 mHeight = params.mKeyboardHeight; in KeyboardId()
110 id.mHeight, in computeHashCode()
131 && other.mHeight == mHeight in equals()
197 mWidth, mHeight, in toString()
/packages/apps/Gallery2/src/com/android/photos/
DBitmapRegionTileSource.java56 int mHeight; field in BitmapRegionTileSource
73 mHeight = mDecoder.getHeight(); in BitmapRegionTileSource()
93 mWidth, mHeight, in BitmapRegionTileSource()
111 return mHeight; in getImageHeight()
161 mOverlapRegion.set(0, 0, mWidth, mHeight); in getTileWithoutReusingBitmap()
191 float scale = (float) targetSize / Math.max(mWidth, mHeight); in decodePreview()
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
DLeaveBehindItem.java55 private int mHeight; field in LeaveBehindItem
115 mHeight = height; in bind()
159 return new LeaveBehindData(getData(), mUndoOp, mHeight); in getLeaveBehindData()
169 final ObjectAnimator height = ObjectAnimator.ofInt(this, "animatedHeight", mHeight, 0); in startShrinkAnimation()
170 setMinimumHeight(mHeight); in startShrinkAnimation()
279 MeasureSpec.makeMeasureSpec(mHeight, MeasureSpec.EXACTLY)); in onMeasure()
/packages/apps/Car/Dialer/src/com/android/car/dialer/
DCallTypeIconsView.java41 private int mHeight; field in CallTypeIconsView
59 mHeight = 0; in clear()
68 mHeight = Math.max(mHeight, drawable.getIntrinsicHeight()); in add()
101 setMeasuredDimension(mWidth, mHeight); in onMeasure()
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
DDragHoverListener.java44 private final IntSupplier mHeight; field in DragHoverListener
71 mHeight = heightSupplier; in DragHoverListener()
84 return mHeight.getAsInt(); in DragHoverListener()
170 float topBottomRegionHeight = mHeight.getAsInt() in insideDragZone()
174 boolean shouldScrollDown = mCurrentPosition.y > mHeight.getAsInt() - topBottomRegionHeight in insideDragZone()

1234