Searched refs:fPath (Results 1 - 25 of 148) sorted by path

123456

/external/chromium_org/third_party/icu/source/common/
H A Duresbund.cpp55 pathkey.pointer = b->fPath;
66 path1.pointer = b1->fPath;
67 path2.pointer = b2->fPath;
152 if(entry->fPath != NULL) {
153 uprv_free(entry->fPath);
242 resB->fPath?resB->fPath:"NULL",
330 find.fPath = (char *)path;
356 r->fPath = (char *)uprv_strdup(path);
357 if(r->fPath
[all...]
H A Duresimp.h57 char *fPath; /* path to bundle - used for distinguishing between resources with the same name */ member in struct:UResourceDataEntry
/external/chromium_org/third_party/skia/bench/
H A DAAClipBench.cpp176 SkPath fPath; member in class:AAClipBuilderBench
193 fPath.addRoundRect(fRect, SkIntToScalar(20), SkIntToScalar(20));
205 clip.setPath(fPath, &fRegion, fDoAA);
H A DCoverageBench.cpp20 SkPath fPath; member in class:DrawPathBench
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);
H A DDashBench.cpp180 SkPath fPath; member in class:MakeDashBench
186 proc(&fPath);
202 fPE->filterPath(&dst, fPath, &rec, NULL);
H A DPathBench.cpp335 fPath.reset(); // PathRef memory can grow without bound otherwise.
337 this->makePath(&fPath);
343 SkPath fPath; member in class:PathCreateBench
743 fPath.addRect(kBaseRect);
747 fPath.addRoundRect(kBaseRect, kRRRadii[0], kRRRadii[1]);
751 fPath.addOval(kBaseRect);
768 fParity = fParity != fPath.conservativelyContainsRect(rect);
798 SkPath fPath; member in class:ConservativelyContainsBench
H A DPathIterBench.cpp30 SkPath fPath; member in class:PathIterBench
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/chromium_org/third_party/skia/debugger/QT/
H A DSkDebuggerGUI.cpp593 fFileName = fPath.toAscii().data();
650 fFileName = fPath.toAscii().data();
987 fPath = path;
H A DSkDebuggerGUI.h63 the global class variable fPath.
301 QString fPath; member in class:SkDebuggerGUI
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeWalker.cpp1184 : fPath(path)
1245 SkPath::Iter iter(fPath, true);
1306 const SkPath& fPath;
H A DLogoPlay.cpp72 static void quadApprox(SkPath &fPath, const SkPoint &p0, const SkPoint &p1, const SkPoint &p2) argument
77 fPath.getLastPt(&c);
88 fPath.quadTo(mid,q);
94 fPath.quadTo(mid,p2);
208 SkPath fPath; local
240 fPath.moveTo(points[0]);
246 fPath.lineTo(points[0]);
252 fPath.lineTo(x, c.fY);
259 fPath.lineTo(c.fX, y);
277 quadApprox(fPath, point
[all...]
H A DSimplify.cpp5047 : fPath(path.nativePath())
5054 : fPath(&path)
5063 fXorMask[0] = fXorMask[1] = (fPath->getFillType() & 1) ? kEvenOdd_Mask : kWinding_Mask;
5074 fPath = &path;
5075 fXorMask[1] = (fPath->getFillType() & 1) ? kEvenOdd_Mask : kWinding_Mask;
5119 SkPath::RawIter iter(*fPath); // FIXME: access path directly when allowed
5217 const SkPath* fPath;
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkPdfGraphicsState.h90 SkPath fPath; member in struct:SkPdfGraphicsState
/external/chromium_org/third_party/skia/experimental/PdfViewer/src/
H A DSkPdfRenderer.cpp1093 pdfContext->fGraphicsState.fPath.reset();
1105 pdfContext->fGraphicsState.fPath.moveTo(SkDoubleToScalar(pdfContext->fGraphicsState.fCurPosX),
1113 pdfContext->fGraphicsState.fPath.reset();
1125 pdfContext->fGraphicsState.fPath.lineTo(SkDoubleToScalar(pdfContext->fGraphicsState.fCurPosX),
1133 pdfContext->fGraphicsState.fPath.reset();
1146 pdfContext->fGraphicsState.fPath.cubicTo(SkDoubleToScalar(x1), SkDoubleToScalar(y1),
1158 pdfContext->fGraphicsState.fPath.reset();
1172 pdfContext->fGraphicsState.fPath.cubicTo(SkDoubleToScalar(x1), SkDoubleToScalar(y1),
1184 pdfContext->fGraphicsState.fPath.reset();
1198 pdfContext->fGraphicsState.fPath
[all...]
/external/chromium_org/third_party/skia/gm/
H A Dconvexpolyclip.cpp235 canvas->clipPath(fPath, op, aa);
249 *path = fPath;
264 fPath = path;
270 fPath.reset();
278 *bounds = fPath.getBounds();
291 SkPath fPath; member in class:skiagm::ConvexPolyClip::Clip
H A Dcubicpaths.cpp120 SkPath fPath; member in struct:CubicPathGM::PathAndName
124 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
125 path.fPath.cubicTo(40*SK_Scalar1, 20*SK_Scalar1,
164 this->drawPath(path.fPath, canvas, color, rect,
269 SkPath fPath; member in struct:CubicClosePathGM::PathAndName
273 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
274 path.fPath.cubicTo(40*SK_Scalar1, 20*SK_Scalar1,
277 path.fPath.close();
314 this->drawPath(path.fPath, canvas, color, rect,
H A Ddegeneratesegments.cpp20 SkPath fPath; member in struct:skiagm::DegenerateSegmentsGM::PathAndName
H A Dfilltypes.cpp13 SkPath fPath; member in class:skiagm::FillTypeGM
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);
H A Dfilltypespersp.cpp14 SkPath fPath; member in class:skiagm::FillTypePerspGM
19 if (fPath.isEmpty()) {
21 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
22 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
48 fPath.setFillType(ft);
52 canvas->drawPath(fPath, paint);
H A Dlinepaths.cpp77 SkPath fPath; member in struct:skiagm::LinePathGM::PathAndName
81 path.fPath.moveTo(25*SK_Scalar1, 15*SK_Scalar1);
82 path.fPath.lineTo(75*SK_Scalar1, 15*SK_Scalar1);
119 this->drawPath(path.fPath, canvas, color, rect,
220 SkPath fPath; member in struct:skiagm::LineClosePathGM::PathAndName
224 path.fPath.moveTo(25*SK_Scalar1, 15*SK_Scalar1);
225 path.fPath.lineTo(75*SK_Scalar1, 15*SK_Scalar1);
226 path.fPath.close();
263 this->drawPath(path.fPath, canvas, color, rect,
H A Dpathfill.cpp118 SkPath fPath[N]; member in class:PathFillGM
123 fDY[i] = gProcs[i](&fPath[i]);
145 canvas->drawPath(fPath[i], paint);
156 SkPath fPath[N]; member in class:PathInverseFillGM
161 fDY[i] = gProcs[i](&fPath[i]);
H A Dpoly2poly.cpp35 SkPath fPath; member in class:SkJSCanvas
51 void SkJSCanvas::beginPath() { fPath.reset(); }
53 fPath.moveTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
57 fPath.lineTo(SkDoubleToScalar(x), SkDoubleToScalar(y));
60 void SkJSCanvas::closePath() { fPath.close(); }
63 fTarget->drawPath(fPath, fFillPaint);
68 fTarget->drawPath(fPath, fStrokePaint);
H A Dquadpaths.cpp77 SkPath fPath; member in struct:skiagm::QuadPathGM::PathAndName
81 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
82 path.fPath.quadTo(50*SK_Scalar1, 20*SK_Scalar1,
120 this->drawPath(path.fPath, canvas, color, rect,
225 SkPath fPath; member in struct:skiagm::QuadClosePathGM::PathAndName
229 path.fPath.moveTo(25*SK_Scalar1, 10*SK_Scalar1);
230 path.fPath.quadTo(50*SK_Scalar1, 20*SK_Scalar1,
232 path.fPath.close();
269 this->drawPath(path.fPath, canvas, color, rect,
H A Dsrcmode.cpp64 SkPath fPath; member in class:SrcModeGM
H A Dstrokes.cpp85 SkPath fPath; member in class:Strokes2GM
89 fPath.moveTo(0, 0);
93 fPath.lineTo(x, y);
137 canvas->drawPath(fPath, paint);

Completed in 1109 milliseconds

123456