Searched defs:fillType (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_graphics_drawable_VectorDrawable.cpp134 jint strokeLineCap, jint strokeLineJoin, jint fillType) {
138 strokeLineCap, strokeLineJoin, fillType);
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/
H A DPath_Delegate.java533 private void setFillType(FillType fillType) { argument
534 mFillType = fillType;
535 mPath.setWindingRule(getWindingRule(fillType));
/frameworks/base/libs/hwui/
H A DVectorDrawable.h220 int fillType = 0; /* non-zero or kWinding_FillType in Skia */ member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
309 return mPrimitiveFields.fillType;
315 int fillType) {
327 mPrimitiveFields.fillType = fillType;
348 fillType, 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/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java173 * <dt><code>android:fillType</code></dt>
174 * <dd>For SDK 24+, sets the fillType for a path. The types can be either "evenOdd" or "nonZero". They behave the
1907 int fillType = properties.getInt(FILL_TYPE_INDEX * 4);
1983 fillType = a.getInt(R.styleable.VectorDrawablePath_fillType, fillType);
1987 strokeMiterLimit, strokeLineCap, strokeLineJoin, fillType);
2198 int strokeLineJoin, int fillType);
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
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java205 int strokeLineJoin, int fillType) {
219 path.setFillType(fillType);
793 private void setFillType(int fillType) { argument
794 mFillType = fillType;
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 920 milliseconds