HomeSort by relevance Sort by last modified time
    Searched full:oval (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
OvalShape.java 23 * Defines an oval shape.
24 * The oval can be drawn to a Canvas with its own draw() method,
ArcShape.java 39 * greater than 360 results in a complete circle/oval.
  /external/skia/src/animator/
SkDrawOval.h 24 DECLARE_MEMBER_INFO(Oval);
  /frameworks/base/graphics/java/android/graphics/
Path.java 294 * @param oval The bounds of oval defining shape and size of the arc
300 public void arcTo(RectF oval, float startAngle, float sweepAngle,
302 native_arcTo(mNativePath, oval, startAngle, sweepAngle, forceMoveTo);
312 * @param oval The bounds of oval defining shape and size of the arc
316 public void arcTo(RectF oval, float startAngle, float sweepAngle) {
317 native_arcTo(mNativePath, oval, startAngle, sweepAngle, false);
372 * Add a closed oval contour to the path
374 * @param oval The bounds of the oval to add as a closed contour to the pat
    [all...]
  /external/openssl/crypto/evp/
evp_cnf.c 79 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);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path.java 343 * @param oval The bounds of oval defining shape and size of the arc
349 public void arcTo(RectF oval, float startAngle, float sweepAngle,
361 * @param oval The bounds of oval defining shape and size of the arc
365 public void arcTo(RectF oval, float startAngle, float sweepAngle) {
437 * Add a closed oval contour to the path
439 * @param oval The bounds of the oval to add as a closed contour to the path
440 * @param dir The direction to wind the oval's contou
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Arcs.java 90 private void drawArcs(Canvas canvas, RectF oval, boolean useCenter,
92 canvas.drawRect(oval, mFramePaint);
93 canvas.drawArc(oval, mStart, mSweep, useCenter, paint);
  /development/samples/ApiDemos/res/drawable/
shape_3.xml 17 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
  /external/openssl/crypto/asn1/
asn_moid.c 76 CONF_VALUE *oval; local
85 oval = sk_CONF_VALUE_value(sktmp, i);
86 if(!do_create(oval->value, oval->name))
  /development/samples/BrowserPlugin/jni/form/
FormPlugin.cpp 193 ANPRectF oval; local
194 oval.left = initialX + ((ovalWidth + ovalSpacing) * (float) x);
195 oval.right = oval.left + ovalWidth;
196 oval.top = ovalTop;
197 oval.bottom = ovalBottom;
198 gCanvasI.drawOval(canvas, &oval, m_paintText);
  /external/skia/src/core/
SkPath.cpp 506 void SkPath::addOval(const SkRect& oval, Direction dir) {
507 SkAutoPathBoundsUpdate apbu(this, oval);
509 SkScalar cx = oval.centerX();
510 SkScalar cy = oval.centerY();
511 SkScalar rx = SkScalarHalf(oval.width());
512 SkScalar ry = SkScalarHalf(oval.height());
538 the provided bounds when we can (i.e. use oval.fLeft instead of cx-rx)
539 to ensure that we don't exceed the oval's bounds *ever*, since we want
540 to use oval for our fast-bounds, rather than have to recompute it.
542 const SkScalar L = oval.fLeft; // cx - r
    [all...]
  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 129 SkRect oval; local
130 oval.set(cx - radius, cy - radius, cx + radius, cy + radius);
138 m_path->arcTo(oval, startDegrees, 0, false);
140 m_path->addOval(oval);
142 m_path->arcTo(oval, startDegrees + sweepDegrees, 0, true);
154 m_path->arcTo(oval, startDegrees, sweepDegrees, false);
  /frameworks/base/core/jni/android/graphics/
Path.cpp 147 static void arcTo(JNIEnv* env, jobject clazz, SkPath* obj, jobject oval, jfloat startAngle, jfloat sweepAngle, jboolean forceMoveTo) {
149 GraphicsJNI::jrectf_to_rect(env, oval, &oval_);
173 static void addOval(JNIEnv* env, jobject clazz, SkPath* obj, jobject oval, SkPath::Direction dir) {
175 GraphicsJNI::jrectf_to_rect(env, oval, &oval_);
186 static void addArc(JNIEnv* env, jobject clazz, SkPath* obj, jobject oval, jfloat startAngle, jfloat sweepAngle) {
188 GraphicsJNI::jrectf_to_rect(env, oval, &oval_);
  /cts/tests/tests/graphics/src/android/graphics/cts/
CornerPathEffectTest.java 75 RectF oval = new RectF(BITMAP_WIDTH - PADDING - 2 * RADIUS, PADDING, local
78 expectedPath.arcTo(oval, 270, 90);
PathTest.java 320 RectF oval = new RectF(LEFT, TOP, RIGHT, BOTTOM); local
321 path.arcTo(oval, 0.0f, 30.0f, true);
341 RectF oval = new RectF(LEFT, TOP, RIGHT, BOTTOM); local
342 path.arcTo(oval, 0.0f, 30.0f);
491 RectF oval = new RectF(LEFT, TOP, RIGHT, BOTTOM); local
492 path.addOval(oval, Path.Direction.CW);
775 RectF oval = new RectF(LEFT, TOP, RIGHT, BOTTOM); local
776 path.addArc(oval, 0.0f, 30.0f);
  /dalvik/vm/alloc/
Float12.h 36 int oval = val; local
75 val = ((oval >> (shift - 1)) + 1) >> 1;
  /external/skia/include/core/
SkStroke.h 56 void strokeOval(const SkRect& oval, SkPath*) const;
SkPath.h 326 @param oval The bounding oval defining the shape and size of the arc
332 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
381 /** Add a closed oval contour to the path
383 @param oval The bounding oval to add as a closed contour to the path
384 @param dir The direction to wind the oval's contour
386 void addOval(const SkRect& oval, Direction dir = kCW_Direction);
403 @param oval The bounds of oval used to define the size of the ar
    [all...]
SkCanvas.h 425 /** Draw the specified oval using the specified paint. The oval will be
427 @param oval The rectangle bounds of the oval to be drawn
428 @param paint The paint used to draw the oval
430 void drawOval(const SkRect& oval, const SkPaint&);
444 specified oval. If the sweep angle is >= 360, then the oval is drawn
447 @param oval The bounds of oval used to define the shape of the ar
    [all...]
  /external/skia/src/svg/
SkSVGCircle.cpp 32 parser._startElement("oval");
SkSVGEllipse.cpp 33 parser._startElement("oval");
  /external/bluetooth/glib/gobject/
gparamspecs.c 81 gint oval = value->data[0].v_int; local
85 return value->data[0].v_int != oval;
110 guint oval = value->data[0].v_uint; local
114 return value->data[0].v_uint != oval;
128 gint oval = value->data[0].v_int; local
132 return value->data[0].v_int != oval;
157 gint oval = value->data[0].v_int; local
161 return value->data[0].v_int != oval;
197 guint oval = value->data[0].v_uint; local
201 return value->data[0].v_uint != oval;
242 glong oval = value->data[0].v_long; local
286 gulong oval = value->data[0].v_ulong; local
326 gint64 oval = value->data[0].v_int64; local
366 guint64 oval = value->data[0].v_uint64; local
403 gunichar oval = value->data[0].v_uint; local
462 glong oval = value->data[0].v_long; local
507 gulong oval = value->data[0].v_ulong; local
540 gfloat oval = value->data[0].v_float; local
583 gdouble oval = value->data[0].v_double; local
    [all...]
  /frameworks/base/awt/java/awt/
Graphics.java 635 * Draws the outline of an oval to fit in the rectangle defined by the given
639 * the X top left corner oval coordinate.
641 * the Y top left corner oval coordinate.
643 * the oval width.
645 * the oval height.
747 * Fills an oval with the current color where the oval is defined by the
751 * the X top left corner oval coordinate.
753 * the Y top left corner oval coordinate.
755 * the oval width
    [all...]
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.cpp 142 // draw the oval
152 // update the coordinates of the oval
  /external/webkit/WebCore/platform/graphics/android/
PathAndroid.cpp 161 SkRect oval; local
162 oval.set(cx - radius, cy - radius, cx + radius, cy + radius);
178 // so we just remember this, and at the end create a new path with an oval
195 m_path->arcTo(oval, startDegrees, sweepDegrees, false);
199 tmp.addOval(oval);

Completed in 77 milliseconds

1 2 3 4