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

1 2

  /external/skia/src/animator/
SkPathParts.cpp 24 SkPathPart::SkPathPart() : fPath(NULL) {
28 fPath->dirty();
32 return fPath;
39 fPath = (SkDrawPath*) parent;
59 fPath->fPath.moveTo(x, y);
76 fPath->fPath.rMoveTo(x, y);
97 fPath->fPath.lineTo(x, y);
    [all...]
SkParseSVGPath.cpp 36 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2)
41 fPath.getLastPt(&c);
52 fPath.quadTo(mid,q);
58 fPath.quadTo(mid,p2);
122 fPath.reset();
153 fPath.moveTo(points[0]);
159 fPath.lineTo(points[0]);
165 fPath.lineTo(x, c.fY);
172 fPath.lineTo(c.fX, y);
190 quadApprox(fPath, points[0], points[1], points[2])
    [all...]
SkDrawPath.cpp 111 return fPath;
119 fPath.reset();
124 return fPath;
155 value->fOperand.fS32 = (int) fPath.getFillType();
180 fPath.setFillType((SkPath::FillType) value.fOperand.fS32);
207 fPath.reset();
208 fPath.moveTo(points[0], points[1]);
211 fPath.lineTo(points[index], points[index+1]);
227 fPath.close();
SkDrawClip.cpp 44 maker.fCanvas->clipPath(path->fPath);
SkDrawPath.h 47 SkPath fPath;
SkPathParts.h 39 SkDrawPath* fPath;
  /external/skia/gm/
filltypes.cpp 6 SkPath fPath;
10 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
11 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
32 fPath.setFillType(ft);
36 canvas->drawPath(fPath, paint);
  /external/skia/src/effects/
Sk1DPathEffect.cpp 41 SkScalar phase, Style style) : fPath(path)
159 fPath.unflatten(buffer);
174 fPath.flatten(buffer);
187 dst->addPath(fPath, pos.fX, pos.fY);
194 dst->addPath(fPath, matrix);
198 morphpath(dst, fPath, meas, distance);
  /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/skia/src/utils/
SkCullPoints.cpp 133 : fCP(), fPath(NULL)
138 : fCP(r), fPath(dst)
145 fPath = dst;
159 fPath->moveTo(SkIntToScalar(pts[0].fX), SkIntToScalar(pts[0].fY));
162 fPath->lineTo(SkIntToScalar(pts[1].fX), SkIntToScalar(pts[1].fY));
SkOSFile.cpp 160 fPath.set(path);
192 SkString str(fPath);
  /external/skia/include/utils/
SkCullPoints.h 72 SkPath* fPath;
  /external/skia/src/core/
SkPathMeasure.cpp 360 fPath = NULL;
367 fPath = &path;
380 fPath = path;
392 if (fPath == NULL) {
439 SkASSERT(fPath);
440 if (fPath == NULL) {
462 compute_pos_tan(*fPath, fSegments[0].fPtIndex, seg->fPtIndex, seg->fType,
511 compute_pos_tan(*fPath, fSegments[0].fPtIndex, seg->fPtIndex,
517 seg_to(*fPath, fSegments[0].fPtIndex, seg->fPtIndex, seg->fType,
521 seg_to(*fPath, fSegments[0].fPtIndex, seg->fPtIndex, seg->fType
    [all...]
SkGlyphCache.cpp 85 SkPath* path = (*gptr)->fPath;
293 glyph->fPath = NULL;
323 if (glyph.fPath == NULL) {
324 const_cast<SkGlyph&>(glyph).fPath = SkNEW(SkPath);
325 fScalerContext->getPath(glyph, glyph.fPath);
327 glyph.fPath->getPoints(NULL, 0x7FFFFFFF) * sizeof(SkPoint);
330 return glyph.fPath;
  /external/skia/include/core/
SkOSFile.h 66 SkString fPath, fSuffix;
SkPathMeasure.h 87 const SkPath* fPath;
SkDraw.h 120 const SkPath* fPath; // returned in next
SkScalerContext.h 36 SkPath* fPath;
90 fImage, fPath, fID, fMaskFormat fields.
  /external/skia/include/effects/
Sk1DPathEffect.h 80 SkPath fPath; // copied from constructor
  /external/chromium/third_party/icu/source/common/
uresimp.h 48 char *fPath; /* path to bundle - used for distinguishing between resources with the same name */
uresbund.c 52 pathkey.pointer = b->fPath;
63 path1.pointer = b1->fPath;
64 path2.pointer = b2->fPath;
150 if(entry->fPath != NULL) {
151 uprv_free(entry->fPath);
290 find.fPath = (char *)myPath;
326 r->fPath = (char *)uprv_strdup(myPath);
327 if(r->fPath == NULL) {
335 result = res_load(&(r->fData), r->fPath, r->fName, status);
353 result = res_load(&(r->fData), r->fPath, aliasName, status)
    [all...]
  /external/icu4c/common/
uresimp.h 55 char *fPath; /* path to bundle - used for distinguishing between resources with the same name */
uresbund.c 52 pathkey.pointer = b->fPath;
63 path1.pointer = b1->fPath;
64 path2.pointer = b2->fPath;
149 if(entry->fPath != NULL) {
150 uprv_free(entry->fPath);
239 resB->fPath?resB->fPath:"NULL",
342 find.fPath = (char *)path;
368 r->fPath = (char *)uprv_strdup(path);
369 if(r->fPath == NULL)
    [all...]
  /external/skia/src/ports/
SkFontHost_android.cpp 320 fPath.set(path);
325 SkStream* stream = SkNEW_ARGS(SkMMAPStream, (fPath.c_str()));
331 stream = SkNEW_ARGS(SkFILEStream, (fPath.c_str()));
340 const char* str = strrchr(fPath.c_str(), '/');
347 return fPath.c_str();
351 SkString fPath;
  /external/skia/src/views/
SkListView.cpp 20 : fPath(path), fSuffix(suffix), fTarget(target)
29 fIter.reset(fPath.c_str(), fSuffix.c_str());
32 fIter.reset(fPath.c_str(), fSuffix.c_str());
44 fIter.reset(fPath.c_str(), fSuffix.c_str());
79 int c = fPath.c_str()[fPath.size() - 1];
82 label.prepend(fPath);
92 SkString fPath, fSuffix;

Completed in 585 milliseconds

1 2