Searched refs:mBorderWidth (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/design/base/android/support/design/widget/
H A DCircularBorderDrawable.java47 float mBorderWidth; field in class:CircularBorderDrawable
78 if (mBorderWidth != width) {
79 mBorderWidth = width;
114 final int borderWidth = Math.round(mBorderWidth);
142 return mBorderWidth > 0 ? PixelFormat.TRANSLUCENT : PixelFormat.TRANSPARENT;
185 final float borderRatio = mBorderWidth / rect.height();
/frameworks/av/cmds/screenrecord/
H A DTextRenderer.h40 mBorderWidth(10.0f),
121 float mBorderWidth; member in class:android::TextRenderer
H A DTextRenderer.cpp265 if (xpos < mBorderWidth) {
266 xpos = mBorderWidth;
268 if (ypos < mBorderWidth) {
269 ypos = mBorderWidth;
272 const size_t maxWidth = (mScreenWidth - mBorderWidth) - xpos;
275 xpos, mBorderWidth, mScreenWidth);
291 (float) (mScreenWidth - mBorderWidth - xposAdj));
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DCircularBitmapDrawable.java45 private float mBorderWidth; field in class:CircularBitmapDrawable
63 mBorderPaint.setStrokeWidth(mBorderWidth);
73 mBorderWidth = borderWidth;
115 bounds.width() / 2f - mBorderWidth / 2, mBorderPaint);
158 dst.width() / 2f - mBorderWidth / 2, mBorderPaint);
H A DStyledCornersBitmapDrawable.java76 private float mBorderWidth; field in class:StyledCornersBitmapDrawable
97 mBorderPaint.setStrokeWidth(mBorderWidth);
113 mBorderWidth = borderWidth;
249 float left = bounds.left + mBorderWidth / 2;
250 float top = bounds.top + mBorderWidth / 2;
251 float right = bounds.right - mBorderWidth / 2;
252 float bottom = bounds.bottom - mBorderWidth / 2;
401 float left = bounds.left + mBorderWidth / 2;
402 float top = bounds.top + mBorderWidth / 2;
403 float right = bounds.right - mBorderWidth /
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DFloatingActionButton.java132 private int mBorderWidth; field in class:FloatingActionButton
167 mBorderWidth = a.getDimensionPixelSize(R.styleable.FloatingActionButton_borderWidth, 0);
180 mRippleColor, mBorderWidth);
/frameworks/base/services/core/java/com/android/server/wm/
H A DAccessibilityController.java473 private final float mBorderWidth; field in class:AccessibilityController.DisplayMagnifier.MagnifiedViewport
483 mBorderWidth = mContext.getResources().getDimension(
485 mHalfBorderWidth = (int) Math.ceil(mBorderWidth / 2);
486 mDrawBorderInset = (int) mBorderWidth / 2;
732 mPaint.setStrokeWidth(mBorderWidth);

Completed in 2321 milliseconds