HomeSort by relevance Sort by last modified time
    Searched refs:fillType (Results 1 - 12 of 12) sorted by null

  /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);
  /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);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsSimplify.cpp 155 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
168 result->setFillType(fillType);
192 temp.setFillType(fillType);
196 result->setFillType(fillType);
SkPathOpsOp.cpp 256 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
278 result->setFillType(fillType);
313 temp.setFillType(fillType);
317 result->setFillType(fillType);
  /external/skia/src/pathops/
SkPathOpsSimplify.cpp 155 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
168 result->setFillType(fillType);
192 temp.setFillType(fillType);
196 result->setFillType(fillType);
SkPathOpsOp.cpp 256 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
278 result->setFillType(fillType);
313 temp.setFillType(fillType);
317 result->setFillType(fillType);
  /external/skia/tests/
PathOpsExtendedTest.cpp 137 SkPath::FillType fillType = path.getFillType();
138 SkASSERT(fillType >= SkPath::kWinding_FillType && fillType <= SkPath::kInverseEvenOdd_FillType);
142 SkDebugf(" %s.setFillType(SkPath::%s);\n", pathName, gFillTypeStr[fillType]);
509 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
510 path.setFillType(fillType);
529 if (fillType == SkPath::kEvenOdd_FillType) {
668 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType pathFillType)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 25 import android.graphics.Path.FillType;
58 private FillType mFillType = FillType.WINDING;
496 private void setFillType(FillType fillType) {
497 mFillType = fillType;
498 mPath.setWindingRule(getWindingRule(fillType));
502 * Returns the Java2D winding rules matching a given Android {@link FillType}.
506 private static int getWindingRule(FillType type) {
  /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/src/core/
SkScan_Path.cpp 114 static void walk_edges(SkEdge* prevHead, SkPath::FillType fillType,
121 int windingMask = (fillType & 1) ? 1 : -1;
219 static void walk_convex_edges(SkEdge* prevHead, SkPath::FillType,
  /external/skia/src/core/
SkScan_Path.cpp 114 static void walk_edges(SkEdge* prevHead, SkPath::FillType fillType,
121 int windingMask = (fillType & 1) ? 1 : -1;
219 static void walk_convex_edges(SkEdge* prevHead, SkPath::FillType,

Completed in 635 milliseconds