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

/frameworks/base/libs/hwui/
H A DVectorDrawable.h214 float trimPathEnd = 1; member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
286 return mPrimitiveFields.trimPathEnd;
288 void setTrimPathEnd(float trimPathEnd) { argument
289 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathEnd, trimPathEnd, mTrimDirty);
312 SkColor fillColor, float fillAlpha, float trimPathStart, float trimPathEnd,
321 mPrimitiveFields.trimPathEnd = trimPathEnd;
342 trimPathEnd, member in class:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::Property
311 updateProperties(float strokeWidth, SkColor strokeColor, float strokeAlpha, SkColor fillColor, float fillAlpha, float trimPathStart, float trimPathEnd, float trimPathOffset, float strokeMiterLimit, int strokeLineCap, int strokeLineJoin, int fillType) argument
H A DVectorDrawable.cpp134 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, argument
136 if (trimPathStart == 0.0f && trimPathEnd == 1.0f) {
141 if (trimPathStart == trimPathEnd) {
148 float end = len * fmod((trimPathEnd + trimPathOffset), 1.0f);
299 case Property::trimPathEnd:
/frameworks/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DAndroidResources.java50 android.R.attr.trimPathEnd, android.R.attr.trimPathOffset, android.R.attr.strokeLineCap,
H A DVectorDrawableCompat.java1598 mTrimPathEnd = TypedArrayUtils.getNamedFloat(a, parser, "trimPathEnd",
1686 void setTrimPathEnd(float trimPathEnd) { argument
1687 mTrimPathEnd = trimPathEnd;
/frameworks/base/core/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp133 jfloat trimPathStart, jfloat trimPathEnd, jfloat trimPathOffset, jfloat strokeMiterLimit,
137 fillColor, fillAlpha, trimPathStart, trimPathEnd, trimPathOffset, strokeMiterLimit,
337 static void setTrimPathEnd(JNIEnv*, jobject, jlong fullPathPtr, jfloat trimPathEnd) { argument
339 fullPath->mutateStagingProperties()->setTrimPathEnd(trimPathEnd);
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/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java191 float trimPathEnd, float trimPathOffset, float strokeMiterLimit, int strokeLineCap,
201 path.setTrimPathEnd(trimPathEnd);
471 static void nSetTrimPathEnd(long pathPtr, float trimPathEnd) { argument
473 path.setTrimPathEnd(trimPathEnd);
739 private void setTrimPathEnd(float trimPathEnd) { argument
740 mTrimPathEnd = trimPathEnd;
189 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
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java154 * <dt><code>android:trimPathEnd</code></dt>
1427 put("trimPathEnd", TRIM_PATH_END_INDEX);
1534 float trimPathEnd = properties.getFloat(TRIM_PATH_END_INDEX * 4);
1609 trimPathEnd = a.getFloat(R.styleable.VectorDrawablePath_trimPathEnd,
1610 trimPathEnd);
1618 fillColor, fillAlpha, trimPathStart, trimPathEnd, trimPathOffset,
1758 void setTrimPathEnd(float trimPathEnd) { argument
1760 nSetTrimPathEnd(mNativePtr, trimPathEnd);
1811 float trimPathEnd, float trimPathOffset, float strokeMiterLimit, int strokeLineCap,
1867 private static native void nSetTrimPathEnd(long pathPtr, float trimPathEnd); argument
1809 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 5546 milliseconds