HomeSort by relevance Sort by last modified time
    Searched refs:fillType (Results 1 - 17 of 17) 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 163 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
176 result->setFillType(fillType);
202 temp.setFillType(fillType);
206 result->setFillType(fillType);
SkPathOpsOp.cpp 257 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
279 result->setFillType(fillType);
316 temp.setFillType(fillType);
320 result->setFillType(fillType);
  /external/skia/src/pathops/
SkPathOpsSimplify.cpp 163 SkPath::FillType fillType = path.isInverseFillType() ? SkPath::kInverseEvenOdd_FillType
176 result->setFillType(fillType);
202 temp.setFillType(fillType);
206 result->setFillType(fillType);
SkPathOpsOp.cpp 257 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
279 result->setFillType(fillType);
316 temp.setFillType(fillType);
320 result->setFillType(fillType);
  /external/chromium_org/third_party/skia/tests/
PathOpsExtendedTest.cpp 138 SkPath::FillType fillType = path.getFillType();
139 SkASSERT(fillType >= SkPath::kWinding_FillType && fillType <= SkPath::kInverseEvenOdd_FillType);
143 SkDebugf(" %s.setFillType(SkPath::%s);\n", pathName, gFillTypeStr[fillType]);
524 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
525 path.setFillType(fillType);
546 if (fillType == SkPath::kEvenOdd_FillType) {
701 void outputProgress(char* ramStr, const char* pathStr, SkPath::FillType pathFillType)
    [all...]
  /external/skia/tests/
PathOpsExtendedTest.cpp 138 SkPath::FillType fillType = path.getFillType();
139 SkASSERT(fillType >= SkPath::kWinding_FillType && fillType <= SkPath::kInverseEvenOdd_FillType);
143 SkDebugf(" %s.setFillType(SkPath::%s);\n", pathName, gFillTypeStr[fillType]);
524 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
525 path.setFillType(fillType);
546 if (fillType == SkPath::kEvenOdd_FillType) {
701 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;
501 private void setFillType(FillType fillType) {
502 mFillType = fillType;
503 mPath.setWindingRule(getWindingRule(fillType));
507 * Returns the Java2D winding rules matching a given Android {@link FillType}.
511 private static int getWindingRule(FillType type) {
  /frameworks/base/graphics/java/android/graphics/
Path.java 76 final FillType fillType = getFillType();
78 setFillType(fillType);
188 public enum FillType {
209 FillType(int ni) {
217 static final FillType[] sFillTypeArray = {
218 FillType.WINDING,
219 FillType.EVEN_ODD,
220 FillType.INVERSE_WINDING,
221 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,
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 392 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
393 path.setFillType(fillType);
409 if (fillType == SkPath::kEvenOdd_FillType) {
600 void outputProgress(const State4& state, const char* pathStr, SkPath::FillType pathFillType) {
  /external/skia/experimental/Intersection/
EdgeWalker_TestUtility.cpp 392 SkPath::FillType fillType = useXor ? SkPath::kEvenOdd_FillType : SkPath::kWinding_FillType;
393 path.setFillType(fillType);
409 if (fillType == SkPath::kEvenOdd_FillType) {
600 void outputProgress(const State4& state, const char* pathStr, SkPath::FillType pathFillType) {
  /external/chromium_org/third_party/skia/src/utils/debugger/
SkDebugCanvas.cpp 674 SkPath::FillType fillType = path.getFillType();
677 gFillTypeStrs[fillType]);
  /external/skia/src/utils/debugger/
SkDebugCanvas.cpp 674 SkPath::FillType fillType = path.getFillType();
677 gFillTypeStrs[fillType]);

Completed in 294 milliseconds