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

  /cts/tests/tests/graphics/src/android/graphics/cts/
Path_FillTypeTest.java 20 import android.graphics.Path.FillType;
26 @TestTargetClass(Path.FillType.class)
35 assertEquals(FillType.WINDING, FillType.valueOf("WINDING"));
36 assertEquals(FillType.EVEN_ODD, FillType.valueOf("EVEN_ODD"));
37 assertEquals(FillType.INVERSE_WINDING, FillType.valueOf("INVERSE_WINDING"));
38 assertEquals(FillType.INVERSE_EVEN_ODD, FillType.valueOf("INVERSE_EVEN_ODD"))
    [all...]
PathTest.java 145 args = {android.graphics.Path.FillType.class}
155 Path.FillType expected1 = Path.FillType.EVEN_ODD;
156 Path.FillType expected2 = Path.FillType.INVERSE_EVEN_ODD;
157 Path.FillType expected3 = Path.FillType.INVERSE_WINDING;
158 Path.FillType expected4 = Path.FillType.WINDING;
162 // set FillType by {@link Path#setFillType(FillType)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathFillTypes.java 52 private void showPath(Canvas canvas, int x, int y, Path.FillType ft,
72 showPath(canvas, 0, 0, Path.FillType.WINDING, paint);
73 showPath(canvas, 160, 0, Path.FillType.EVEN_ODD, paint);
74 showPath(canvas, 0, 160, Path.FillType.INVERSE_WINDING, paint);
75 showPath(canvas, 160, 160, Path.FillType.INVERSE_EVEN_ODD, paint);
  /external/webkit/WebCore/platform/graphics/skia/
SkiaUtils.h 73 bool SkPathContainsPoint(SkPath*, const FloatPoint&, SkPath::FillType);
PlatformContextSkia.h 118 void setFillRule(SkPath::FillType);
SkiaUtils.cpp 190 bool SkPathContainsPoint(SkPath* originalPath, const FloatPoint& point, SkPath::FillType ft)
195 SkPath::FillType originalFillType = originalPath->getFillType();
PlatformContextSkia.cpp 540 void PlatformContextSkia::setFillRule(SkPath::FillType fr)
  /frameworks/base/graphics/java/android/graphics/
Path.java 74 public enum FillType {
81 FillType(int ni) {
88 private static final FillType[] sFillTypeArray = {
89 FillType.WINDING,
90 FillType.EVEN_ODD,
91 FillType.INVERSE_WINDING,
92 FillType.INVERSE_EVEN_ODD
101 public FillType getFillType() {
110 public void setFillType(FillType ft) {
115 * Returns true if the filltype is one of the INVERSE variant
    [all...]
  /external/skia/include/core/
SkPath.h 46 enum FillType {
68 FillType getFillType() const { return (FillType)fFillType; }
75 void setFillType(FillType ft) { fFillType = SkToU8(ft); }
77 /** Returns true if the filltype is one of the Inverse variants */
  /external/skia/src/animator/
SkDrawPath.cpp 27 SK_PROPERTY(fillType),
35 SK_MEMBER_PROPERTY(fillType, FillType),
153 case SK_PROPERTY(fillType):
176 case SK_PROPERTY(fillType):
180 fPath.setFillType((SkPath::FillType) value.fOperand.fS32);
  /external/skia/gm/
filltypes.cpp 23 void showPath(SkCanvas* canvas, int x, int y, SkPath::FillType ft,
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 25 import android.graphics.Path.FillType;
58 private FillType mFillType = FillType.WINDING;
490 private void setFillType(FillType fillType) {
491 mFillType = fillType;
492 mPath.setWindingRule(getWindingRule(fillType));
496 * Returns the Java2D winding rules matching a given Android {@link FillType}.
500 private static int getWindingRule(FillType type) {
  /external/webkit/WebCore/platform/graphics/android/
PathAndroid.cpp 86 SkPath::FillType ft = m_path->getFillType(); // save
  /external/skia/src/core/
SkScan_Path.cpp 129 static void walk_edges(SkEdge* prevHead, SkPath::FillType fillType,
137 int windingMask = (fillType & 1) ? 1 : -1;
  /frameworks/base/core/jni/android/graphics/
Path.cpp 63 SkPath::FillType ft) {
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java 404 ringPath.setFillType(Path.FillType.EVEN_ODD);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksPage.java 482 path.setFillType(Path.FillType.INVERSE_WINDING);
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 2710 milliseconds