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

/frameworks/base/libs/hwui/
H A DPathCache.h153 } oval; member in union:android::uirenderer::PathDescription::Shape
/frameworks/base/tools/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.java64 public final void drawArc(@NonNull RectF oval, float startAngle, float sweepAngle, argument
66 drawArc(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, useCenter,
244 public final void drawOval(@NonNull RectF oval, @NonNull Paint paint) { argument
245 if (oval == null) {
248 drawOval(oval.left, oval.top, oval
[all...]
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp125 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); local
126 obj->arcTo(oval, startAngle, sweepAngle, forceMoveTo);
145 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); local
146 obj->addOval(oval, dir);
158 SkRect oval = SkRect::MakeLTRB(left, top, right, bottom); local
160 obj->addArc(oval, startAngle, sweepAngle);
/frameworks/base/graphics/java/android/graphics/
H A DBaseCanvas.java90 public void drawArc(@NonNull RectF oval, float startAngle, float sweepAngle, boolean useCenter, argument
93 drawArc(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, useCenter,
261 public void drawOval(@NonNull RectF oval, @NonNull Paint paint) { argument
262 if (oval == null) {
266 drawOval(oval.left, oval.top, oval
[all...]
H A DPath.java450 * @param oval The bounds of oval defining shape and size of the arc
456 public void arcTo(RectF oval, float startAngle, float sweepAngle, argument
458 arcTo(oval.left, oval.top, oval.right, oval.bottom, startAngle, sweepAngle, forceMoveTo);
468 * @param oval The bounds of oval defining shape and size of the arc
472 public void arcTo(RectF oval, floa argument
561 addOval(RectF oval, Direction dir) argument
595 addArc(RectF oval, float startAngle, float sweepAngle) argument
[all...]
H A DCanvas.java1298 * Draw the specified arc, which will be scaled to fit inside the specified oval.
1305 * If the sweep angle is >= 360, then the oval is drawn completely. Note that this differs
1314 * @param oval The bounds of oval used to define the shape and size of the arc
1317 * @param useCenter If true, include the center of the oval in the arc, and close it if it is
1321 public void drawArc(@NonNull RectF oval, float startAngle, float sweepAngle, boolean useCenter, argument
1323 super.drawArc(oval, startAngle, sweepAngle, useCenter, paint);
1328 * Draw the specified arc, which will be scaled to fit inside the specified oval.
1335 * If the sweep angle is >= 360, then the oval is drawn completely. Note that this differs
1346 * @param useCenter If true, include the center of the oval i
1597 drawOval(@onNull RectF oval, @NonNull Paint paint) argument
[all...]

Completed in 408 milliseconds