HomeSort by relevance Sort by last modified time
    Searched full:fpath (Results 1 - 25 of 225) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium_org/third_party/skia/src/animator/
SkPathParts.cpp 16 SkPathPart::SkPathPart() : fPath(NULL) {
20 fPath->dirty();
24 return fPath;
31 fPath = (SkDrawPath*) parent;
51 fPath->fPath.moveTo(x, y);
68 fPath->fPath.rMoveTo(x, y);
89 fPath->fPath.lineTo(x, y)
    [all...]
SkParseSVGPath.cpp 28 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2)
33 fPath.getLastPt(&c);
44 fPath.quadTo(mid,q);
50 fPath.quadTo(mid,p2);
114 fPath.reset();
145 fPath.moveTo(points[0]);
151 fPath.lineTo(points[0]);
157 fPath.lineTo(x, c.fY);
164 fPath.lineTo(c.fX, y);
182 quadApprox(fPath, points[0], points[1], points[2])
    [all...]
  /external/skia/src/animator/
SkPathParts.cpp 16 SkPathPart::SkPathPart() : fPath(NULL) {
20 fPath->dirty();
24 return fPath;
31 fPath = (SkDrawPath*) parent;
51 fPath->fPath.moveTo(x, y);
68 fPath->fPath.rMoveTo(x, y);
89 fPath->fPath.lineTo(x, y)
    [all...]
SkParseSVGPath.cpp 28 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2)
33 fPath.getLastPt(&c);
44 fPath.quadTo(mid,q);
50 fPath.quadTo(mid,p2);
114 fPath.reset();
145 fPath.moveTo(points[0]);
151 fPath.lineTo(points[0]);
157 fPath.lineTo(x, c.fY);
164 fPath.lineTo(c.fX, y);
182 quadApprox(fPath, points[0], points[1], points[2])
    [all...]
  /external/chromium_org/third_party/skia/bench/
CoverageBench.cpp 20 SkPath fPath;
31 fPath.moveTo(0, 0);
32 fPath.quadTo(500, 0, 500, 500);
33 fPath.quadTo(250, 0, 0, 500);
38 fRC.setRect(fPath.getBounds().round());
54 fDraw.drawPathCoverage(fPath, fPaint);
58 fDraw.drawPath(fPath, fPaint);
PathIterBench.cpp 30 SkPath fPath;
44 fPath.moveTo(pts[0]);
47 fPath.lineTo(pts[1]);
50 fPath.quadTo(pts[1], pts[2]);
53 fPath.cubicTo(pts[1], pts[2], pts[3]);
71 SkPath::RawIter iter(fPath);
79 SkPath::Iter iter(fPath, false);
  /external/skia/bench/
CoverageBench.cpp 20 SkPath fPath;
31 fPath.moveTo(0, 0);
32 fPath.quadTo(500, 0, 500, 500);
33 fPath.quadTo(250, 0, 0, 500);
38 fRC.setRect(fPath.getBounds().round());
54 fDraw.drawPathCoverage(fPath, fPaint);
58 fDraw.drawPath(fPath, fPaint);
PathIterBench.cpp 30 SkPath fPath;
44 fPath.moveTo(pts[0]);
47 fPath.lineTo(pts[1]);
50 fPath.quadTo(pts[1], pts[2]);
53 fPath.cubicTo(pts[1], pts[2], pts[3]);
71 SkPath::RawIter iter(fPath);
79 SkPath::Iter iter(fPath, false);
  /bionic/tests/
ftw_test.cpp 24 void sanity_check_ftw(const char* fpath, const struct stat* sb, int tflag) {
25 ASSERT_TRUE(fpath != NULL);
32 const char* fpath, const struct stat* sb, int tflag, struct FTW* ftwbuf) {
33 sanity_check_ftw(fpath, sb, tflag);
40 int check_ftw(const char* fpath, const struct stat* sb, int tflag) {
41 sanity_check_ftw(fpath, sb, tflag);
45 int check_ftw64(const char* fpath, const struct stat64* sb, int tflag) {
46 sanity_check_ftw(fpath, reinterpret_cast<const struct stat*>(sb), tflag);
51 const char* fpath, const struct stat* sb, int tflag, struct FTW* ftwbuf) {
52 sanity_check_nftw(fpath, sb, tflag, ftwbuf)
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SamplePath.cpp 87 SkPath fPath[6];
113 fPath[0].moveTo(SkIntToScalar(40), SkIntToScalar(70));
114 fPath[0].lineTo(SkIntToScalar(70), SkIntToScalar(70) + SK_Scalar1/1);
115 fPath[0].lineTo(SkIntToScalar(110), SkIntToScalar(70));
117 fPath[1].moveTo(SkIntToScalar(40), SkIntToScalar(70));
118 fPath[1].lineTo(SkIntToScalar(70), SkIntToScalar(70) - SK_Scalar1/1);
119 fPath[1].lineTo(SkIntToScalar(110), SkIntToScalar(70));
121 fPath[2].moveTo(SkIntToScalar(V), SkIntToScalar(V));
122 fPath[2].lineTo(SkIntToScalar(50), SkIntToScalar(V));
123 fPath[2].lineTo(SkIntToScalar(50), SkIntToScalar(50))
    [all...]
SampleStrokePath.cpp 100 SkPath fPath;
112 SkParsePath::FromSVGString(str, &fPath);
114 fPath.addCircle(0, 0, SkIntToScalar(50), SkPath::kCW_Direction);
115 fPath.addCircle(0, SkIntToScalar(-50), SkIntToScalar(30), SkPath::kCW_Direction);
118 scale_to_width(&fPath, fWidth);
119 const SkRect& bounds = fPath.getBounds();
120 fPath.offset(-bounds.fLeft, -bounds.fTop);
144 canvas->drawPath(fPath, *paint);
200 fPath = p;
201 fPath.offset(100, 0)
    [all...]
SampleFillType.cpp 20 SkPath fPath;
24 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
25 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
49 fPath.setFillType(ft);
53 canvas->drawPath(fPath, paint);
SampleTextOnPath.cpp 93 SkPath fPath;
100 fPath.addOval(r);
101 fPath.offset(SkIntToScalar(-50), SkIntToScalar(-50));
128 canvas->drawTextOnPathHV(text, len, fPath,
132 canvas->drawTextOnPathHV(text, len, fPath,
136 canvas->drawTextOnPathHV(text, len, fPath,
142 canvas->drawPath(fPath, paint);
  /external/skia/samplecode/
SamplePath.cpp 87 SkPath fPath[6];
113 fPath[0].moveTo(SkIntToScalar(40), SkIntToScalar(70));
114 fPath[0].lineTo(SkIntToScalar(70), SkIntToScalar(70) + SK_Scalar1/1);
115 fPath[0].lineTo(SkIntToScalar(110), SkIntToScalar(70));
117 fPath[1].moveTo(SkIntToScalar(40), SkIntToScalar(70));
118 fPath[1].lineTo(SkIntToScalar(70), SkIntToScalar(70) - SK_Scalar1/1);
119 fPath[1].lineTo(SkIntToScalar(110), SkIntToScalar(70));
121 fPath[2].moveTo(SkIntToScalar(V), SkIntToScalar(V));
122 fPath[2].lineTo(SkIntToScalar(50), SkIntToScalar(V));
123 fPath[2].lineTo(SkIntToScalar(50), SkIntToScalar(50))
    [all...]
SampleStrokePath.cpp 100 SkPath fPath;
112 SkParsePath::FromSVGString(str, &fPath);
114 fPath.addCircle(0, 0, SkIntToScalar(50), SkPath::kCW_Direction);
115 fPath.addCircle(0, SkIntToScalar(-50), SkIntToScalar(30), SkPath::kCW_Direction);
118 scale_to_width(&fPath, fWidth);
119 const SkRect& bounds = fPath.getBounds();
120 fPath.offset(-bounds.fLeft, -bounds.fTop);
144 canvas->drawPath(fPath, *paint);
200 fPath = p;
201 fPath.offset(100, 0)
    [all...]
SampleFillType.cpp 20 SkPath fPath;
24 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
25 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
49 fPath.setFillType(ft);
53 canvas->drawPath(fPath, paint);
SampleTextOnPath.cpp 93 SkPath fPath;
100 fPath.addOval(r);
101 fPath.offset(SkIntToScalar(-50), SkIntToScalar(-50));
128 canvas->drawTextOnPathHV(text, len, fPath,
132 canvas->drawTextOnPathHV(text, len, fPath,
136 canvas->drawTextOnPathHV(text, len, fPath,
142 canvas->drawPath(fPath, paint);
  /external/chromium_org/third_party/skia/include/gpu/
GrGlyph.h 26 SkPath* fPath;
33 fPath = NULL;
40 if (fPath) {
41 delete fPath;
42 fPath = NULL;
  /external/skia/include/gpu/
GrGlyph.h 26 SkPath* fPath;
33 fPath = NULL;
40 if (fPath) {
41 delete fPath;
42 fPath = NULL;
  /external/chromium_org/third_party/skia/gm/
filltypes.cpp 13 SkPath fPath;
20 if (fPath.isEmpty()) {
22 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
23 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
49 fPath.setFillType(ft);
53 canvas->drawPath(fPath, paint);
  /external/skia/gm/
filltypes.cpp 13 SkPath fPath;
20 if (fPath.isEmpty()) {
22 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
23 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
49 fPath.setFillType(ft);
53 canvas->drawPath(fPath, paint);
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWriteGeometrySink.cpp 17 SkDWriteGeometrySink::SkDWriteGeometrySink(SkPath* path) : fRefCount(1), fPath(path) { }
50 fPath->setFillType(SkPath::kEvenOdd_FillType);
53 fPath->setFillType(SkPath::kWinding_FillType);
68 fPath->moveTo(startPoint.x, startPoint.y);
76 fPath->lineTo(points->x, points->y);
114 fPath->getLastPt(&lastPt);
124 fPath->quadTo(quadratic[1].x, quadratic[1].y,
127 fPath->cubicTo(beziers->point1.x, beziers->point1.y,
136 fPath->close();
  /external/skia/src/utils/win/
SkDWriteGeometrySink.cpp 17 SkDWriteGeometrySink::SkDWriteGeometrySink(SkPath* path) : fRefCount(1), fPath(path) { }
50 fPath->setFillType(SkPath::kEvenOdd_FillType);
53 fPath->setFillType(SkPath::kWinding_FillType);
68 fPath->moveTo(startPoint.x, startPoint.y);
76 fPath->lineTo(points->x, points->y);
114 fPath->getLastPt(&lastPt);
124 fPath->quadTo(quadratic[1].x, quadratic[1].y,
127 fPath->cubicTo(beziers->point1.x, beziers->point1.y,
136 fPath->close();
  /external/chromium_org/third_party/skia/src/pathops/
SkOpEdgeBuilder.h 17 : fPath(path.nativePath())
24 : fPath(&path)
51 const SkPath* fPath;
  /external/skia/src/pathops/
SkOpEdgeBuilder.h 17 : fPath(path.nativePath())
24 : fPath(&path)
51 const SkPath* fPath;

Completed in 4887 milliseconds

1 2 3 4 5 6 7 8 9