Searched defs:trimPathEnd (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/libs/hwui/
H A DVectorDrawable.cpp81 static void applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, argument
83 if (trimPathStart == 0.0f && trimPathEnd == 1.0f) {
88 if (trimPathStart == trimPathEnd) {
95 float end = len * fmod((trimPathEnd + trimPathOffset), 1.0f);
252 case Property::trimPathEnd:
H A DVectorDrawable.h217 float trimPathEnd = 1; member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
289 return mPrimitiveFields.trimPathEnd;
291 void setTrimPathEnd(float trimPathEnd) { argument
292 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathEnd, trimPathEnd, mTrimDirty);
315 SkColor fillColor, float fillAlpha, float trimPathStart, float trimPathEnd,
324 mPrimitiveFields.trimPathEnd = trimPathEnd;
345 trimPathEnd, member in class:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::Property
314 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
/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 DVectorDrawableCompat.java165 * <dt><code>android:trimPathEnd</code></dt>
1772 mTrimPathEnd = TypedArrayUtils.getNamedFloat(a, parser, "trimPathEnd",
1865 void setTrimPathEnd(float trimPathEnd) { argument
1866 mTrimPathEnd = trimPathEnd;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java163 * <dt><code>android:trimPathEnd</code></dt>
1662 put("trimPathEnd", TRIM_PATH_END_INDEX);
1747 new FloatProperty<VFullPath> ("trimPathEnd") {
1781 put("trimPathEnd", TRIM_PATH_END);
1909 float trimPathEnd = properties.getFloat(TRIM_PATH_END_INDEX * 4);
1984 trimPathEnd = a.getFloat(R.styleable.VectorDrawablePath_trimPathEnd,
1985 trimPathEnd);
1993 fillColor, fillAlpha, trimPathStart, trimPathEnd, trimPathOffset,
2133 void setTrimPathEnd(float trimPathEnd) { argument
2135 nSetTrimPathEnd(mNativePtr, trimPathEnd);
2202 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
2293 nSetTrimPathEnd(long pathPtr, float trimPathEnd) argument
[all...]
/frameworks/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

Completed in 60 milliseconds