Searched refs:oval (Results 1 - 25 of 88) sorted by relevance

1234

/external/chromium_org/third_party/skia/samplecode/
H A DSamplePathClip.cpp49 SkRect oval = fOval; local
50 oval.offset(fCenter.fX - oval.centerX(), fCenter.fY - oval.centerY());
56 canvas->drawOval(oval, p);
70 canvas->drawOval(oval, p);
H A DSamplePathEffects.cpp124 SkRect oval; local
125 oval.set(SkIntToScalar(20), SkIntToScalar(30),
127 oval.offset(x, 0);
128 fPath.addRoundRect(oval, SkIntToScalar(8), SkIntToScalar(8));
/external/openssl/crypto/evp/
H A Devp_cnf.c79 CONF_VALUE *oval; local
88 oval = sk_CONF_VALUE_value(sktmp, i);
89 if (!strcmp(oval->name, "fips_mode"))
92 if (!X509V3_get_value_bool(oval, &m))
114 ERR_add_error_data(4, "name=", oval->name,
115 ", value=", oval->value);
/external/skia/samplecode/
H A DSamplePathClip.cpp49 SkRect oval = fOval; local
50 oval.offset(fCenter.fX - oval.centerX(), fCenter.fY - oval.centerY());
56 canvas->drawOval(oval, p);
70 canvas->drawOval(oval, p);
H A DSamplePathEffects.cpp124 SkRect oval; local
125 oval.set(SkIntToScalar(20), SkIntToScalar(30),
127 oval.offset(x, 0);
128 fPath.addRoundRect(oval, SkIntToScalar(8), SkIntToScalar(8));
/external/chromium_org/third_party/skia/gm/
H A Dovals.cpp144 SkRect oval = SkRect::MakeLTRB(-20, -30, 20, 30); variable
163 // position the oval, and make it at off-integer coords.
173 canvas->drawRect(oval, rectPaint);
174 canvas->drawOval(oval, fPaints[i]);
184 // non-scaled tall and skinny oval
186 SkRect oval = SkRect::MakeLTRB(-20, -60, 20, 60); variable
188 // position the oval, and make it at off-integer coords.
195 canvas->drawRect(oval, rectPaint);
196 canvas->drawOval(oval, fPaints[i]);
200 // non-scaled wide and short oval
202 SkRect oval = SkRect::MakeLTRB(-80, -30, 80, 30); variable
219 SkRect oval = SkRect::MakeLTRB(0, -60, 1, 60); variable
234 SkRect oval = SkRect::MakeLTRB(-80, -1, 80, 0); variable
[all...]
/external/skia/gm/
H A Dovals.cpp144 SkRect oval = SkRect::MakeLTRB(-20, -30, 20, 30); variable
163 // position the oval, and make it at off-integer coords.
173 canvas->drawRect(oval, rectPaint);
174 canvas->drawOval(oval, fPaints[i]);
184 // non-scaled tall and skinny oval
186 SkRect oval = SkRect::MakeLTRB(-20, -60, 20, 60); variable
188 // position the oval, and make it at off-integer coords.
195 canvas->drawRect(oval, rectPaint);
196 canvas->drawOval(oval, fPaints[i]);
200 // non-scaled wide and short oval
202 SkRect oval = SkRect::MakeLTRB(-80, -30, 80, 30); variable
219 SkRect oval = SkRect::MakeLTRB(0, -60, 1, 60); variable
234 SkRect oval = SkRect::MakeLTRB(-80, -1, 80, 0); variable
[all...]
/external/openssl/crypto/asn1/
H A Dasn_moid.c76 CONF_VALUE *oval; local
85 oval = sk_CONF_VALUE_value(sktmp, i);
86 if(!do_create(oval->value, oval->name))
/external/chromium_org/third_party/skia/include/core/
H A DSkRRect.h65 //!< The RR is actually a (non-empty) oval (i.e., all x radii are equal
70 //!< are equal but it is not an oval (i.e., there are lines between
76 //!< neither an rect, oval, nor a simple RR. It is called "nine patch"
146 * Set this RR to match the supplied oval. All x radii will equal half the
149 void setOval(const SkRect& oval) { argument
150 if (oval.isEmpty()) {
155 SkScalar xRad = SkScalarHalf(oval.width());
156 SkScalar yRad = SkScalarHalf(oval.height());
158 fRect = oval;
H A DSkPath.h145 /** Returns true if the path is an oval.
147 * @param rect returns the bounding rect of this oval. It's a circle
150 * @return true if this path is an oval.
151 * Tracking whether a path is an oval is considered an
459 @param oval The bounding oval defining the shape and size of the arc
465 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
628 * Add a closed oval contour to the path
630 * @param oval The bounding oval t
[all...]
/external/skia/include/core/
H A DSkRRect.h65 //!< The RR is actually a (non-empty) oval (i.e., all x radii are equal
70 //!< are equal but it is not an oval (i.e., there are lines between
76 //!< neither an rect, oval, nor a simple RR. It is called "nine patch"
146 * Set this RR to match the supplied oval. All x radii will equal half the
149 void setOval(const SkRect& oval) { argument
150 if (oval.isEmpty()) {
155 SkScalar xRad = SkScalarHalf(oval.width());
156 SkScalar yRad = SkScalarHalf(oval.height());
158 fRect = oval;
/external/fio/
H A Doptions.c1336 .oval = FILE_LOCK_NONE,
1340 .oval = FILE_LOCK_EXCLUSIVE,
1345 .oval = FILE_LOCK_READWRITE,
1374 .oval = TD_DDIR_READ,
1378 .oval = TD_DDIR_WRITE,
1382 .oval = TD_DDIR_TRIM,
1386 .oval = TD_DDIR_RANDREAD,
1390 .oval = TD_DDIR_RANDWRITE,
1394 .oval = TD_DDIR_RANDTRIM,
1398 .oval
[all...]
H A Dparse.h29 unsigned int oval; /* output value */ member in struct:value_pair
/external/chromium_org/third_party/skia/src/gpu/
H A DGrOvalRenderer.h35 const SkRect& oval, const SkStrokeRec& stroke);
/external/skia/src/gpu/
H A DGrOvalRenderer.h35 const SkRect& oval, const SkStrokeRec& stroke);
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrOvalEffect.cpp374 GrFragmentProcessor* GrOvalEffect::Create(GrPrimitiveEdgeType edgeType, const SkRect& oval) { argument
378 SkScalar w = oval.width();
379 SkScalar h = oval.height();
382 return CircleEffect::Create(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + w), w);
386 return EllipseEffect::Create(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + h), w, h);
/external/skia/src/gpu/effects/
H A DGrOvalEffect.cpp371 GrEffectRef* GrOvalEffect::Create(GrEffectEdgeType edgeType, const SkRect& oval) { argument
375 SkScalar w = oval.width();
376 SkScalar h = oval.height();
379 return CircleEffect::Create(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + w), w);
383 return EllipseEffect::Create(edgeType, SkPoint::Make(oval.fLeft + w, oval.fTop + h), w, h);
/external/chromium_org/third_party/skia/tools/lua/
H A Dclassify_rrect_clips.lua58 elseif (rrect:type() == "oval") then
63 return "oval"
/external/skia/tools/lua/
H A Dclassify_rrect_clips.lua58 elseif (rrect:type() == "oval") then
63 return "oval"
/external/chromium_org/chrome/browser/download/
H A Ddownload_shelf.cc130 SkRect oval; local
131 oval.set(SkIntToScalar(bounds.x()),
136 path.arcTo(oval,
/external/chromium_org/third_party/skia/src/core/
H A DSkPath.cpp886 static int build_arc_points(const SkRect& oval, SkScalar startAngle, argument
893 // treated as a special case the moves can distort the oval's
895 pts[0].set(oval.fRight, oval.centerY());
897 } else if (0 == oval.width() && 0 == oval.height()) {
904 pts[0].set(oval.fRight, oval.fTop);
938 matrix.setScale(SkScalarHalf(oval.width()), SkScalarHalf(oval
1152 addOval(const SkRect& oval, Direction dir) argument
1229 arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo) argument
1249 addArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle) argument
[all...]
/external/skia/src/core/
H A DSkPath.cpp884 static int build_arc_points(const SkRect& oval, SkScalar startAngle, argument
891 // treated as a special case the moves can distort the oval's
893 pts[0].set(oval.fRight, oval.centerY());
895 } else if (0 == oval.width() && 0 == oval.height()) {
902 pts[0].set(oval.fRight, oval.fTop);
936 matrix.setScale(SkScalarHalf(oval.width()), SkScalarHalf(oval
1246 addOval(const SkRect& oval, Direction dir) argument
1323 arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle, bool forceMoveTo) argument
1343 addArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPath.cpp324 SkRect oval; local
325 oval.set(cx - radiusXScalar, cy - radiusYScalar, cx + radiusXScalar, cy + radiusYScalar);
334 // Use s180, not s360, because SkPath::arcTo(oval, angle, s360, false) draws nothing.
338 m_path.arcTo(oval, startDegrees, s180, false);
339 m_path.arcTo(oval, startDegrees + s180, s180, false);
343 m_path.arcTo(oval, startDegrees, -s180, false);
344 m_path.arcTo(oval, startDegrees - s180, -s180, false);
348 m_path.arcTo(oval, startDegrees, sweepDegrees, false);
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkTrackDevice.h69 virtual void drawOval(const SkDraw& dummy1, const SkRect& oval, argument
72 INHERITED::drawOval(dummy1, oval, paint);
/external/skia/experimental/PdfViewer/
H A DSkTrackDevice.h73 virtual void drawOval(const SkDraw& dummy1, const SkRect& oval, argument
76 INHERITED::drawOval(dummy1, oval, paint);

Completed in 2796 milliseconds

1234