Searched defs:strokeWidth (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/libs/hwui/tests/unit/
H A DBakedOpStateTests.cpp94 float strokeWidth; member in struct:android::uirenderer::StrokeTestCase
163 strokedPaint.setStrokeWidth(testCase.strokeWidth);
/frameworks/base/libs/hwui/
H A DTessellationCache.h66 float strokeWidth; member in struct:android::uirenderer::TessellationCache::Description
H A DPathCache.h135 float strokeWidth; member in struct:android::uirenderer::PathDescription
H A DVectorDrawable.h209 float strokeWidth = 0; member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
251 return mPrimitiveFields.strokeWidth;
253 void setStrokeWidth(float strokeWidth) { argument
254 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(strokeWidth, strokeWidth);
312 void updateProperties(float strokeWidth, SkColor strokeColor, float strokeAlpha, argument
316 mPrimitiveFields.strokeWidth = strokeWidth;
337 strokeWidth = 0, member in class:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::Property
/frameworks/base/libs/hwui/hwui/
H A DCanvas.cpp57 float strokeWidth = fmax(textSize * kStdUnderline_Thickness, 1.0f); local
59 SkScalar top = y + textSize * kStdUnderline_Offset - 0.5f * strokeWidth;
60 SkScalar bottom = y + textSize * kStdUnderline_Offset + 0.5f * strokeWidth;
64 SkScalar top = y + textSize * kStdStrikeThru_Offset - 0.5f * strokeWidth;
65 SkScalar bottom = y + textSize * kStdStrikeThru_Offset + 0.5f * strokeWidth;
/frameworks/base/core/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp132 jfloat strokeWidth, jint strokeColor, jfloat strokeAlpha, jint fillColor, jfloat fillAlpha,
136 fullPath->mutateStagingProperties()->updateProperties(strokeWidth, strokeColor, strokeAlpha,
277 static void setStrokeWidth(JNIEnv*, jobject, jlong fullPathPtr, jfloat strokeWidth) { argument
279 fullPath->mutateStagingProperties()->setStrokeWidth(strokeWidth);
131 updateFullPathPropertiesAndStrokeStyles(JNIEnv*, jobject, jlong fullPathPtr, jfloat strokeWidth, jint strokeColor, jfloat strokeAlpha, jint fillColor, jfloat fillAlpha, jfloat trimPathStart, jfloat trimPathEnd, jfloat trimPathOffset, jfloat strokeMiterLimit, jint strokeLineCap, jint strokeLineJoin, jint fillType) argument
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java130 double centerRadius, double strokeWidth, float arrowWidth, float arrowHeight) {
137 ring.setStrokeWidth((float) strokeWidth * screenDensity);
653 * @param strokeWidth Set the stroke width of the progress spinner in pixels.
655 public void setStrokeWidth(float strokeWidth) { argument
656 mStrokeWidth = strokeWidth;
657 mPaint.setStrokeWidth(strokeWidth);
129 setSizeParameters(double progressCircleWidth, double progressCircleHeight, double centerRadius, double strokeWidth, float arrowWidth, float arrowHeight) argument
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java156 * <dt><code>android:strokeWidth</code></dt>
1767 mStrokeWidth = TypedArrayUtils.getNamedFloat(a, parser, "strokeWidth",
1812 void setStrokeWidth(float strokeWidth) { argument
1813 mStrokeWidth = strokeWidth;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java154 * <dt><code>android:strokeWidth</code></dt>
1649 put("strokeWidth", STROKE_WIDTH_INDEX);
1662 new FloatProperty<VFullPath> ("strokeWidth") {
1768 put("strokeWidth", STROKE_WIDTH);
1896 float strokeWidth = properties.getFloat(STROKE_WIDTH_INDEX * 4);
1975 strokeWidth = a.getFloat(R.styleable.VectorDrawablePath_strokeWidth,
1976 strokeWidth);
1985 nUpdateFullPathProperties(mNativePtr, strokeWidth, strokeColor, strokeAlpha,
2065 void setStrokeWidth(float strokeWidth) { argument
2067 nSetStrokeWidth(mNativePtr, strokeWidth);
2195 nUpdateFullPathProperties(long pathPtr, float strokeWidth, int strokeColor, float strokeAlpha, int fillColor, float fillAlpha, float trimPathStart, float trimPathEnd, float trimPathOffset, float strokeMiterLimit, int strokeLineCap, int strokeLineJoin, int fillType) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java202 static void nUpdateFullPathProperties(long pathPtr, float strokeWidth, argument
208 path.setStrokeWidth(strokeWidth);
725 private void setStrokeWidth(float strokeWidth) { argument
726 mStrokeWidth = strokeWidth;

Completed in 235 milliseconds