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

/frameworks/base/libs/hwui/
H A DVectorDrawable.h215 float trimPathEnd = 1; member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
287 return mPrimitiveFields.trimPathEnd;
289 void setTrimPathEnd(float trimPathEnd) { argument
290 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathEnd, trimPathEnd, mTrimDirty);
313 SkColor fillColor, float fillAlpha, float trimPathStart, float trimPathEnd,
322 mPrimitiveFields.trimPathEnd = trimPathEnd;
343 trimPathEnd, member in class:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::Property
312 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.cpp80 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, argument
82 if (trimPathStart == 0.0f && trimPathEnd == 1.0f) {
87 if (trimPathStart == trimPathEnd) {
94 float end = len * fmod((trimPathEnd + trimPathOffset), 1.0f);
251 case Property::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/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DAndroidResources.java52 android.R.attr.trimPathEnd, android.R.attr.trimPathOffset, android.R.attr.strokeLineCap,
H A DVectorDrawableCompat.java164 * <dt><code>android:trimPathEnd</code></dt>
1769 mTrimPathEnd = TypedArrayUtils.getNamedFloat(a, parser, "trimPathEnd",
1862 void setTrimPathEnd(float trimPathEnd) { argument
1863 mTrimPathEnd = trimPathEnd;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java204 float trimPathEnd, float trimPathOffset, float strokeMiterLimit, int strokeLineCap,
214 path.setTrimPathEnd(trimPathEnd);
483 static void nSetTrimPathEnd(long pathPtr, float trimPathEnd) { argument
485 path.setTrimPathEnd(trimPathEnd);
765 private void setTrimPathEnd(float trimPathEnd) { argument
766 mTrimPathEnd = trimPathEnd;
202 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.java162 * <dt><code>android:trimPathEnd</code></dt>
1655 put("trimPathEnd", TRIM_PATH_END_INDEX);
1740 new FloatProperty<VFullPath> ("trimPathEnd") {
1774 put("trimPathEnd", TRIM_PATH_END);
1902 float trimPathEnd = properties.getFloat(TRIM_PATH_END_INDEX * 4);
1977 trimPathEnd = a.getFloat(R.styleable.VectorDrawablePath_trimPathEnd,
1978 trimPathEnd);
1986 fillColor, fillAlpha, trimPathStart, trimPathEnd, trimPathOffset,
2126 void setTrimPathEnd(float trimPathEnd) { argument
2128 nSetTrimPathEnd(mNativePtr, trimPathEnd);
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
2286 nSetTrimPathEnd(long pathPtr, float trimPathEnd) argument
[all...]

Completed in 181 milliseconds