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.h67 float strokeWidth; member in struct:android::uirenderer::TessellationCache::Description
H A DPathCache.h129 float strokeWidth; member in struct:android::uirenderer::PathDescription
H A DVectorDrawable.h208 float strokeWidth = 0; member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
250 return mPrimitiveFields.strokeWidth;
252 void setStrokeWidth(float strokeWidth) { argument
253 VD_SET_PRIMITIVE_FIELD_AND_NOTIFY(strokeWidth, strokeWidth);
311 void updateProperties(float strokeWidth, SkColor strokeColor, float strokeAlpha, argument
315 mPrimitiveFields.strokeWidth = strokeWidth;
336 strokeWidth = 0, member in class:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::Property
/frameworks/base/libs/hwui/hwui/
H A DCanvas.cpp56 float strokeWidth = fmax(textSize * kStdUnderline_Thickness, 1.0f); local
58 SkScalar top = y + textSize * kStdUnderline_Offset - 0.5f * strokeWidth;
59 SkScalar bottom = y + textSize * kStdUnderline_Offset + 0.5f * strokeWidth;
63 SkScalar top = y + textSize * kStdStrikeThru_Offset - 0.5f * strokeWidth;
64 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);
652 * @param strokeWidth Set the stroke width of the progress spinner in pixels.
654 public void setStrokeWidth(float strokeWidth) { argument
655 mStrokeWidth = strokeWidth;
656 mPaint.setStrokeWidth(strokeWidth);
129 setSizeParameters(double progressCircleWidth, double progressCircleHeight, double centerRadius, double strokeWidth, float arrowWidth, float arrowHeight) argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java189 static void nUpdateFullPathProperties(long pathPtr, float strokeWidth, argument
195 path.setStrokeWidth(strokeWidth);
699 private void setStrokeWidth(float strokeWidth) { argument
700 mStrokeWidth = strokeWidth;
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java154 * <dt><code>android:strokeWidth</code></dt>
1759 mStrokeWidth = TypedArrayUtils.getNamedFloat(a, parser, "strokeWidth",
1799 void setStrokeWidth(float strokeWidth) { argument
1800 mStrokeWidth = strokeWidth;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java153 * <dt><code>android:strokeWidth</code></dt>
1616 put("strokeWidth", STROKE_WIDTH_INDEX);
1629 new FloatProperty<VFullPath> ("strokeWidth") {
1735 put("strokeWidth", STROKE_WIDTH);
1855 float strokeWidth = properties.getFloat(STROKE_WIDTH_INDEX * 4);
1934 strokeWidth = a.getFloat(R.styleable.VectorDrawablePath_strokeWidth,
1935 strokeWidth);
1944 nUpdateFullPathProperties(mNativePtr, strokeWidth, strokeColor, strokeAlpha,
2024 void setStrokeWidth(float strokeWidth) { argument
2026 nSetStrokeWidth(mNativePtr, strokeWidth);
2137 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...]

Completed in 9042 milliseconds