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

/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DPathTest.java30 final Path.FillType fillType = Path.FillType.INVERSE_EVEN_ODD;
31 assertFalse(fillType.equals(defaultFillType)); // Sanity check for the test itself.
33 path.setFillType(fillType);
35 assertEquals(path.getFillType(), fillType);
/frameworks/base/libs/hwui/
H A DVectorDrawable.h219 int fillType = 0; /* non-zero or kWinding_FillType in Skia */ member in struct:android::uirenderer::VectorDrawable::FullPath::FullPathProperties::PrimitiveFields
308 return mPrimitiveFields.fillType;
314 int fillType) {
326 mPrimitiveFields.fillType = fillType;
347 fillType, 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/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java531 private void setFillType(FillType fillType) { argument
532 mFillType = fillType;
533 mPath.setWindingRule(getWindingRule(fillType));
/frameworks/base/graphics/java/android/graphics/
H A DPath.java79 final FillType fillType = getFillType();
81 setFillType(fillType);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/drawable/
H A DVectorDrawable_Delegate.java192 int strokeLineJoin, int fillType) {
206 path.setFillType(fillType);
767 private void setFillType(int fillType) { argument
768 mFillType = fillType;
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/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/graphics/java/android/graphics/drawable/
H A DVectorDrawable.java165 * <dt><code>android:fillType</code></dt>
166 * <dd>Sets the fillType for a path. It is the same as SVG's "fill-rule" properties.
1539 int fillType = properties.getInt(FILL_TYPE_INDEX * 4);
1615 fillType = a.getInt(R.styleable.VectorDrawablePath_fillType, fillType);
1619 strokeMiterLimit, strokeLineCap, strokeLineJoin, fillType);
1812 int strokeLineJoin, int fillType);
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

Completed in 182 milliseconds