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

/frameworks/base/libs/hwui/
H A DVectorDrawable.h218 float trimPathOffset = 0; member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
295 return mPrimitiveFields.trimPathOffset;
297 void setTrimPathOffset(float trimPathOffset) { argument
298 VD_SET_PRIMITIVE_FIELD_WITH_FLAG(trimPathOffset, trimPathOffset, mTrimDirty);
316 float trimPathOffset, float strokeMiterLimit, int strokeLineCap, int strokeLineJoin,
325 mPrimitiveFields.trimPathOffset = trimPathOffset;
346 trimPathOffset, 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
H A DVectorDrawable.cpp82 float trimPathOffset) {
94 float start = len * fmod((trimPathStart + trimPathOffset), 1.0f);
95 float end = len * fmod((trimPathEnd + trimPathOffset), 1.0f);
255 case Property::trimPathOffset:
81 applyTrim(SkPath* outPath, const SkPath& inPath, float trimPathStart, float trimPathEnd, float trimPathOffset) 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,
347 static void setTrimPathOffset(JNIEnv*, jobject, jlong fullPathPtr, jfloat trimPathOffset) { argument
349 fullPath->mutateStagingProperties()->setTrimPathOffset(trimPathOffset);
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.java167 * <dt><code>android:trimPathOffset</code></dt>
1774 mTrimPathOffset = TypedArrayUtils.getNamedFloat(a, parser, "trimPathOffset",
1875 void setTrimPathOffset(float trimPathOffset) { argument
1876 mTrimPathOffset = trimPathOffset;
/frameworks/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java204 float trimPathEnd, float trimPathOffset, float strokeMiterLimit, int strokeLineCap,
215 path.setTrimPathOffset(trimPathOffset);
495 static void nSetTrimPathOffset(long pathPtr, float trimPathOffset) { argument
497 path.setTrimPathOffset(trimPathOffset);
773 private void setTrimPathOffset(float trimPathOffset) { argument
774 mTrimPathOffset = trimPathOffset;
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.java165 * <dt><code>android:trimPathOffset</code></dt>
1663 put("trimPathOffset", TRIM_PATH_OFFSET_INDEX);
1760 new FloatProperty<VFullPath> ("trimPathOffset") {
1782 put("trimPathOffset", TRIM_PATH_OFFSET);
1910 float trimPathOffset = properties.getFloat(TRIM_PATH_OFFSET_INDEX * 4);
1986 trimPathOffset = a.getFloat(
1987 R.styleable.VectorDrawablePath_trimPathOffset, trimPathOffset);
1993 fillColor, fillAlpha, trimPathStart, trimPathEnd, trimPathOffset,
2145 void setTrimPathOffset(float trimPathOffset) { argument
2147 nSetTrimPathOffset(mNativePtr, trimPathOffset);
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
2297 nSetTrimPathOffset(long pathPtr, float trimPathOffset) argument
[all...]

Completed in 193 milliseconds