/cts/tests/tests/graphics/src/android/graphics/cts/ |
Path_FillTypeTest.java | 20 import android.graphics.Path.FillType; 26 assertEquals(FillType.WINDING, FillType.valueOf("WINDING")); 27 assertEquals(FillType.EVEN_ODD, FillType.valueOf("EVEN_ODD")); 28 assertEquals(FillType.INVERSE_WINDING, FillType.valueOf("INVERSE_WINDING")); 29 assertEquals(FillType.INVERSE_EVEN_ODD, FillType.valueOf("INVERSE_EVEN_ODD")); 30 // Every FillType element will be tested somewhere else [all...] |
PathTest.java | 79 Path.FillType expected1 = Path.FillType.EVEN_ODD; 80 Path.FillType expected2 = Path.FillType.INVERSE_EVEN_ODD; 81 Path.FillType expected3 = Path.FillType.INVERSE_WINDING; 82 Path.FillType expected4 = Path.FillType.WINDING; 86 // set FillType by {@link Path#setFillType(FillType)} [all...] |
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
PathTest.java | 29 final Path.FillType defaultFillType = path.getFillType(); 30 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);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
PathFillTypes.java | 50 private void showPath(Canvas canvas, int x, int y, Path.FillType ft, 70 showPath(canvas, 0, 0, Path.FillType.WINDING, paint); 71 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint); 72 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint); 73 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);
|
/external/skia/tests/ |
PathOpsInverseTest.cpp | 16 one.setFillType((SkPath::FillType) oneFill); 23 two.setFillType((SkPath::FillType) twoFill);
|
PathOpsExtendedTest.h | 38 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType );
|
PathOpsOpCubicThreadedTest.cpp | 46 pathA.setFillType((SkPath::FillType) e); 51 pathB.setFillType((SkPath::FillType) f);
|
PathOpsOpRectThreadedTest.cpp | 50 pathA.setFillType((SkPath::FillType) e); 56 pathB.setFillType((SkPath::FillType) f);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/skia/ |
SkiaUtils.h | 89 bool PLATFORM_EXPORT SkPathContainsPoint(const SkPath&, const FloatPoint&, SkPath::FillType);
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrInOrderDrawBuffer.h | 104 SkPath::FillType fFill; 111 SkPath::FillType fFill; 139 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE; 140 virtual void onDrawPath(const GrPath*, SkPath::FillType,
|
GrGpu.h | 331 void getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings); 438 virtual void onGpuStencilPath(const GrPath*, SkPath::FillType) = 0; 439 virtual void onGpuDrawPath(const GrPath*, SkPath::FillType) = 0; 482 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE; 483 virtual void onDrawPath(const GrPath*, SkPath::FillType,
|
GrDrawTarget.h | 338 void stencilPath(const GrPath*, SkPath::FillType fill); 344 void drawPath(const GrPath*, SkPath::FillType fill); 471 void executeDrawPath(const GrPath* path, SkPath::FillType fill, [all...] |
/external/skia/src/gpu/ |
GrInOrderDrawBuffer.h | 104 SkPath::FillType fFill; 111 SkPath::FillType fFill; 139 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE; 140 virtual void onDrawPath(const GrPath*, SkPath::FillType,
|
GrGpu.h | 331 void getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings); 438 virtual void onGpuStencilPath(const GrPath*, SkPath::FillType) = 0; 439 virtual void onGpuDrawPath(const GrPath*, SkPath::FillType) = 0; 482 virtual void onStencilPath(const GrPath*, SkPath::FillType) SK_OVERRIDE; 483 virtual void onDrawPath(const GrPath*, SkPath::FillType,
|
GrDrawTarget.h | 338 void stencilPath(const GrPath*, SkPath::FillType fill); 344 void drawPath(const GrPath*, SkPath::FillType fill); 471 void executeDrawPath(const GrPath* path, SkPath::FillType fill, [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Path.java | 83 final FillType fillType = getFillType(); 85 setFillType(fillType); 182 public enum FillType { 203 FillType(int ni) { 211 static final FillType[] sFillTypeArray = { 212 FillType.WINDING, 213 FillType.EVEN_ODD, 214 FillType.INVERSE_WINDING, 215 FillType.INVERSE_EVEN_OD [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkPath.h | 44 enum FillType { 66 FillType getFillType() const { return (FillType)fFillType; } 73 void setFillType(FillType ft) { 77 /** Returns true if the filltype is one of the Inverse variants */ 78 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); } 513 static bool IsInverseFillType(FillType fill) { 529 static FillType ConvertToNonInverseFillType(FillType fill) { 534 return (FillType)(fill & 1) [all...] |
/external/skia/include/core/ |
SkPath.h | 44 enum FillType { 66 FillType getFillType() const { return (FillType)fFillType; } 73 void setFillType(FillType ft) { 77 /** Returns true if the filltype is one of the Inverse variants */ 78 bool isInverseFillType() const { return IsInverseFillType((FillType)fFillType); } 513 static bool IsInverseFillType(FillType fill) { 529 static FillType ConvertToNonInverseFillType(FillType fill) { 534 return (FillType)(fill & 1) [all...] |
/external/skia/gm/ |
emptypath.cpp | 30 SkPath::FillType fill) { 44 SkPath::FillType fFill;
|
pathopsinverse.cpp | 66 SkPath::FillType oneF = oneFill ? SkPath::kInverseEvenOdd_FillType 69 SkPath::FillType twoF = twoFill ? SkPath::kInverseEvenOdd_FillType
|
filltypes.cpp | 36 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft,
|
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFUtils.h | 51 static void PaintPath(SkPaint::Style style, SkPath::FillType fill,
|
/external/skia/src/pdf/ |
SkPDFUtils.h | 51 static void PaintPath(SkPaint::Style style, SkPath::FillType fill,
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDrawPath.cpp | 19 SK_PROPERTY(fillType), 27 SK_MEMBER_PROPERTY(fillType, FillType), 145 case SK_PROPERTY(fillType): 168 case SK_PROPERTY(fillType): 172 fPath.setFillType((SkPath::FillType) value.fOperand.fS32);
|
/external/skia/src/animator/ |
SkDrawPath.cpp | 19 SK_PROPERTY(fillType), 27 SK_MEMBER_PROPERTY(fillType, FillType), 145 case SK_PROPERTY(fillType): 168 case SK_PROPERTY(fillType): 172 fPath.setFillType((SkPath::FillType) value.fOperand.fS32);
|