HomeSort by relevance Sort by last modified time
    Searched defs:fPath (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/skia/src/utils/win/
SkDWriteGeometrySink.h 21 SkPath* fPath;
  /external/skia/legacy/include/effects/
Sk2DPathEffect.h 84 SkPath fPath;
Sk1DPathEffect.h 79 SkPath fPath; // copied from constructor
  /external/skia/bench/
PathIterBench.cpp 30 SkPath fPath;
46 fPath.moveTo(pts[0]);
49 fPath.lineTo(pts[1]);
52 fPath.quadTo(pts[1], pts[2]);
55 fPath.cubicTo(pts[1], pts[2], pts[3]);
71 SkPath::RawIter iter(fPath);
79 SkPath::Iter iter(fPath, false);
  /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);
45 fPath.setFillType(ft);
49 canvas->drawPath(fPath, paint);
filltypespersp.cpp 14 SkPath fPath;
19 if (fPath.isEmpty()) {
21 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
22 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
44 fPath.setFillType(ft);
48 canvas->drawPath(fPath, paint);
cubicpaths.cpp 73 SkPath fPath;
77 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
78 path.fPath.cubicTo(40*SK_Scalar1, 20*SK_Scalar1,
116 this->drawPath(path.fPath, canvas, color, rect,
216 SkPath fPath;
220 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
221 path.fPath.cubicTo(40*SK_Scalar1, 20*SK_Scalar1,
224 path.fPath.close();
260 this->drawPath(path.fPath, canvas, color, rect,
linepaths.cpp 73 SkPath fPath;
77 path.fPath.moveTo(25*SK_Scalar1, 15*SK_Scalar1);
78 path.fPath.lineTo(75*SK_Scalar1, 15*SK_Scalar1);
114 this->drawPath(path.fPath, canvas, color, rect,
214 SkPath fPath;
218 path.fPath.moveTo(25*SK_Scalar1, 15*SK_Scalar1);
219 path.fPath.lineTo(75*SK_Scalar1, 15*SK_Scalar1);
220 path.fPath.close();
256 this->drawPath(path.fPath, canvas, color, rect,
  /external/skia/include/effects/
Sk1DPathEffect.h 71 SkPath fPath; // copied from constructor
Sk2DPathEffect.h 99 SkPath fPath;
  /external/skia/include/utils/
SkCullPoints.h 65 SkPath* fPath;
  /external/skia/legacy/include/core/
SkOSFile.h 63 SkString fPath, fSuffix;
SkClipStack.h 52 Clip() : fRect(NULL), fPath(NULL), fOp(SkRegion::kIntersect_Op) {}
56 const SkPath* fPath; // if non-null, this is a path clip
64 * the pointers fRect and fPath:
66 * fRect==NULL fPath!=NULL path clip
67 * fRect!=NULL fPath==NULL rect clip
68 * fRect==NULL fPath==NULL empty clip
SkPathMeasure.h 80 const SkPath* fPath;
  /external/skia/legacy/include/utils/
SkCullPoints.h 65 SkPath* fPath;
  /external/skia/legacy/src/animator/
SkDrawPath.h 39 SkPath fPath;
  /external/skia/src/animator/
SkDrawPath.h 39 SkPath fPath;
  /external/skia/src/core/
SkTextToPathIter.h 26 const SkPath* fPath; // may be null for "whitespace" glyphs
44 const SkPath* fPath; // returned in next
  /external/skia/include/core/
SkOSFile.h 90 SkString fPath, fSuffix;
SkPathMeasure.h 84 const SkPath* fPath;
SkPathEffect.h 95 SkPath fPath; // 'stamp' to be used at each point (if kUsePath is set)
  /external/skia/include/gpu/
GrGlyph.h 29 SkPath* fPath;
36 fPath = NULL;
43 if (fPath) {
44 delete fPath;
45 fPath = NULL;
  /external/skia/legacy/src/core/
SkClipStack.cpp 19 SkPath fPath;
33 Rec(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) : fPath(path) {
52 return fPath == b.fPath;
157 if (!SkRect::Intersects(rec->fPath.getBounds(), rect)) {
181 if (!SkRect::Intersects(rec->fPath.getBounds(), pathBounds)) {
201 ((a.fPath == NULL && b.fPath == NULL) ||
202 (a.fPath != NULL && b.fPath != NULL && *a.fPath == *b.fPath))
    [all...]
  /frameworks/base/core/jni/android/graphics/
PathMeasure.cpp 44 : fPath(path), fMeasure(fPath, forceClosed) {}
46 SkPath fPath; // copy of the user's path
47 SkPathMeasure fMeasure; // this guy points to fPath
61 pair->fPath.reset();
63 pair->fPath = *path;
65 pair->fMeasure.setPath(&pair->fPath, forceClosed);
  /external/icu4c/common/
uresimp.h 57 char *fPath; /* path to bundle - used for distinguishing between resources with the same name */

Completed in 494 milliseconds

1 2 3