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

/frameworks/base/libs/hwui/
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) {
93 float start = len * fmod((trimPathStart + trimPathOffset), 1.0f);
248 case Property::trimPathStart:
H A DVectorDrawable.h214 float trimPathStart = 0; member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
281 return mPrimitiveFields.trimPathStart;
283 void setTrimPathStart(float trimPathStart) { argument
284 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathStart, trimPathStart, mTrimDirty);
313 SkColor fillColor, float fillAlpha, float trimPathStart, float trimPathEnd,
321 mPrimitiveFields.trimPathStart = trimPathStart;
342 trimPathStart, 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
/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,
327 static void setTrimPathStart(JNIEnv*, jobject, jlong fullPathPtr, jfloat trimPathStart) { argument
329 fullPath->mutateStagingProperties()->setTrimPathStart(trimPathStart);
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.java162 * <dt><code>android:trimPathStart</code></dt>
1774 mTrimPathStart = TypedArrayUtils.getNamedFloat(a, parser, "trimPathStart",
1852 void setTrimPathStart(float trimPathStart) { argument
1853 mTrimPathStart = trimPathStart;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java160 * <dt><code>android:trimPathStart</code></dt>
1654 put("trimPathStart", TRIM_PATH_START_INDEX);
1727 new FloatProperty<VFullPath> ("trimPathStart") {
1773 put("trimPathStart", TRIM_PATH_START);
1901 float trimPathStart = properties.getFloat(TRIM_PATH_START_INDEX * 4);
1981 trimPathStart = a.getFloat(
1982 R.styleable.VectorDrawablePath_trimPathStart, trimPathStart);
1986 fillColor, fillAlpha, trimPathStart, trimPathEnd, trimPathOffset,
2114 void setTrimPathStart(float trimPathStart) { argument
2116 nSetTrimPathStart(mNativePtr, trimPathStart);
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
2282 nSetTrimPathStart(long pathPtr, float trimPathStart) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java203 int strokeColor, float strokeAlpha, int fillColor, float fillAlpha, float trimPathStart,
213 path.setTrimPathStart(trimPathStart);
471 static void nSetTrimPathStart(long pathPtr, float trimPathStart) { argument
473 path.setTrimPathStart(trimPathStart);
757 private void setTrimPathStart(float trimPathStart) { argument
758 mTrimPathStart = trimPathStart;
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 159 milliseconds