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

/frameworks/base/libs/hwui/
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) {
147 float start = len * fmod((trimPathStart + trimPathOffset), 1.0f);
296 case Property::trimPathStart:
H A DVectorDrawable.h213 float trimPathStart = 0; member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
280 return mPrimitiveFields.trimPathStart;
282 void setTrimPathStart(float trimPathStart) { argument
283 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathStart, trimPathStart, mTrimDirty);
312 SkColor fillColor, float fillAlpha, float trimPathStart, float trimPathEnd,
320 mPrimitiveFields.trimPathStart = trimPathStart;
341 trimPathStart, 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
/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/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java190 int strokeColor, float strokeAlpha, int fillColor, float fillAlpha, float trimPathStart,
200 path.setTrimPathStart(trimPathStart);
459 static void nSetTrimPathStart(long pathPtr, float trimPathStart) { argument
461 path.setTrimPathStart(trimPathStart);
731 private void setTrimPathStart(float trimPathStart) { argument
732 mTrimPathStart = trimPathStart;
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/support/graphics/drawable/static/src/android/support/graphics/drawable/
H A DVectorDrawableCompat.java1602 mTrimPathStart = TypedArrayUtils.getNamedFloat(a, parser, "trimPathStart",
1676 void setTrimPathStart(float trimPathStart) { argument
1677 mTrimPathStart = trimPathStart;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java152 * <dt><code>android:trimPathStart</code></dt>
1426 put("trimPathStart", TRIM_PATH_START_INDEX);
1533 float trimPathStart = properties.getFloat(TRIM_PATH_START_INDEX * 4);
1613 trimPathStart = a.getFloat(
1614 R.styleable.VectorDrawablePath_trimPathStart, trimPathStart);
1618 fillColor, fillAlpha, trimPathStart, trimPathEnd, trimPathOffset,
1746 void setTrimPathStart(float trimPathStart) { argument
1748 nSetTrimPathStart(mNativePtr, trimPathStart);
1810 int strokeColor, float strokeAlpha, int fillColor, float fillAlpha, float trimPathStart,
1865 private static native void nSetTrimPathStart(long pathPtr, float trimPathStart); 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 2712 milliseconds