Searched defs:oval (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/libs/hwui/
H A DPathCache.h135 } oval; member in union:android::uirenderer::PathDescription::Shape
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
H A DNopCanvas.java170 public void drawOval(RectF oval, Paint paint) { argument
182 public void drawArc(RectF oval, float startAngle, float sweepAngle, boolean useCenter, argument
/frameworks/base/core/java/android/view/
H A DRecordingCanvas.java65 public final void drawArc(@NonNull RectF oval, float startAngle, float sweepAngle, argument
67 drawArc(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, useCenter,
245 public final void drawOval(@NonNull RectF oval, @NonNull Paint paint) { argument
246 if (oval == null) {
249 drawOval(oval.left, oval.top, oval
[all...]
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp128 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); local
129 obj->arcTo(oval, startAngle, sweepAngle, forceMoveTo);
148 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); local
149 obj->addOval(oval, dir);
161 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); local
163 obj->addArc(oval, startAngle, sweepAngle);
/frameworks/base/graphics/java/android/graphics/
H A DBaseCanvas.java97 public void drawArc(@NonNull RectF oval, float startAngle, float sweepAngle, boolean useCenter, argument
100 drawArc(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, useCenter,
268 public void drawOval(@NonNull RectF oval, @NonNull Paint paint) { argument
269 if (oval == null) {
273 drawOval(oval.left, oval.top, oval
[all...]
H A DPath.java458 * @param oval The bounds of oval defining shape and size of the arc
464 public void arcTo(RectF oval, float startAngle, float sweepAngle, argument
466 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, forceMoveTo);
476 * @param oval The bounds of oval defining shape and size of the arc
480 public void arcTo(RectF oval, floa argument
569 addOval(RectF oval, Direction dir) argument
603 addArc(RectF oval, float startAngle, float sweepAngle) argument
[all...]
H A DCanvas.java1368 * Draw the specified arc, which will be scaled to fit inside the specified oval.
1375 * If the sweep angle is >= 360, then the oval is drawn completely. Note that this differs
1384 * @param oval The bounds of oval used to define the shape and size of the arc
1387 * @param useCenter If true, include the center of the oval in the arc, and close it if it is
1391 public void drawArc(@NonNull RectF oval, float startAngle, float sweepAngle, boolean useCenter, argument
1393 super.drawArc(oval, startAngle, sweepAngle, useCenter, paint);
1398 * Draw the specified arc, which will be scaled to fit inside the specified oval.
1405 * If the sweep angle is >= 360, then the oval is drawn completely. Note that this differs
1416 * @param useCenter If true, include the center of the oval i
1671 drawOval(@onNull RectF oval, @NonNull Paint paint) argument
[all...]

Completed in 100 milliseconds