/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/clearsilver/util/ |
rcfs.c | 38 char fpath[_POSIX_PATH_MAX]; local 41 snprintf (fpath, sizeof(fpath), "%s,log", path); 45 err = hdf_read_file (m, fpath); 59 char fpath[_POSIX_PATH_MAX]; local 62 snprintf (fpath, sizeof(fpath), "%s,log", path); 66 if (rename (ftmp, fpath) == -1) 100 char fpath[_POSIX_PATH_MAX]; local 118 snprintf (fpath, sizeof (fpath), "%s,%d", path, version) 128 char fpath[_POSIX_PATH_MAX]; local 192 char fpath[_POSIX_PATH_MAX]; local [all...] |
/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);
|
/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/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);
|
/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/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;
|
SkPath.cpp | 48 fPath->setIsConvex(fEmpty); 50 fPath->fBounds = fRect; 51 fPath->fBoundsIsDirty = false; 53 fPath->fBounds.join(fRect); 54 fPath->fBoundsIsDirty = false; 59 SkPath* fPath; 66 fPath = path; [all...] |
/external/skia/include/core/ |
SkOSFile.h | 66 SkString fPath, fSuffix;
|
SkScalerContext.h | 36 SkPath* fPath; 90 fImage, fPath, fID, fMaskFormat fields.
|
SkDraw.h | 117 const SkPath* fPath; // returned in next
|
SkPathMeasure.h | 87 const SkPath* fPath;
|
/external/skia/include/utils/ |
SkCullPoints.h | 72 SkPath* fPath;
|
/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/include/effects/ |
Sk1DPathEffect.h | 80 SkPath fPath; // copied from constructor
|
/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;
|
/external/icu4c/common/ |
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/clearsilver/python/examples/trans/ |
trans.py | 245 fpath = self.root + '/' + file 248 data = open(fpath, 'r').read() 264 fpath = self.root + '/' + path 265 files = os.listdir(fpath) 270 fname = fpath + '/' + file
|