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

1 2

  /external/skia/samplecode/
SamplePathClip.cpp 49 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);
SamplePageFlip.cpp 56 SkRect oval; local
57 oval.setEmpty();
63 ref->inval(oval, true);
64 oval.set(x, y, x + SkIntToScalar(OVALW), y + SkIntToScalar(OVALH));
65 ref->inval(oval, true);
77 canvas.drawOval(oval, paint);
SamplePathEffects.cpp 123 SkRect oval; local
124 oval.set(SkIntToScalar(20), SkIntToScalar(30),
126 oval.offset(x, 0);
127 fPath.addRoundRect(oval, SkIntToScalar(8), SkIntToScalar(8));
  /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))
  /frameworks/base/graphics/java/android/graphics/
Path.java 331 * @param oval The bounds of oval defining shape and size of the arc
337 public void arcTo(RectF oval, float startAngle, float sweepAngle,
340 native_arcTo(mNativePath, oval, startAngle, sweepAngle, forceMoveTo);
350 * @param oval The bounds of oval defining shape and size of the arc
354 public void arcTo(RectF oval, float startAngle, float sweepAngle) {
356 native_arcTo(mNativePath, oval, startAngle, sweepAngle, false);
427 * Add a closed oval contour to the path
429 * @param oval The bounds of the oval to add as a closed contour to the pat
    [all...]
Canvas.java     [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Arcs.java 89 private void drawArcs(Canvas canvas, RectF oval, boolean useCenter,
91 canvas.drawRect(oval, mFramePaint);
92 canvas.drawArc(oval, mStart, mSweep, useCenter, paint);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path_Delegate.java 293 /*package*/ static void native_arcTo(int nPath, RectF oval,
300 pathDelegate.arcTo(oval, startAngle, sweepAngle, forceMoveTo);
335 /*package*/ static void native_addOval(int nPath, RectF oval, int dir) {
342 oval.left, oval.top, oval.width(), oval.height()), false);
358 /*package*/ static void native_addArc(int nPath, RectF oval,
367 oval.left, oval.top, oval.width(), oval.height()
    [all...]
Canvas_Delegate.java 701 /*package*/ static void native_drawOval(int nativeCanvas, final RectF oval, int paint) {
702 if (oval.right > oval.left && oval.bottom > oval.top) {
712 graphics.fillOval((int)oval.left, (int)oval.top,
713 (int)oval.width(), (int)oval.height());
718 graphics.drawOval((int)oval.left, (int)oval.top
    [all...]
  /external/skia/include/core/
SkStroke.h 45 void strokeOval(const SkRect& oval, SkPath*) const;
SkPath.h 422 @param oval The bounding oval defining the shape and size of the arc
428 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
495 /** Add a closed oval contour to the path
497 @param oval The bounding oval to add as a closed contour to the path
498 @param dir The direction to wind the oval's contour
500 void addOval(const SkRect& oval, Direction dir = kCW_Direction);
517 @param oval The bounds of oval used to define the size of the ar
    [all...]
SkCanvas.h 586 /** Draw the specified oval using the specified paint. The oval will be
588 @param oval The rectangle bounds of the oval to be drawn
589 @param paint The paint used to draw the oval
591 void drawOval(const SkRect& oval, const SkPaint&);
605 specified oval. If the sweep angle is >= 360, then the oval is drawn
608 @param oval The bounds of oval used to define the shape of the ar
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/skia/
PathSkia.cpp 136 SkRect oval; local
137 oval.set(cx - radius, cy - radius, cx + radius, cy + radius);
145 m_path->arcTo(oval, startDegrees, 0, false);
147 m_path->addOval(oval, anticlockwise ?
150 m_path->arcTo(oval, startDegrees + sweepDegrees, 0, true);
162 m_path->arcTo(oval, startDegrees, sweepDegrees, false);
  /cts/tests/tests/graphics/src/android/graphics/cts/
CornerPathEffectTest.java 63 RectF oval = new RectF(BITMAP_WIDTH - PADDING - 2 * RADIUS, PADDING, local
66 expectedPath.arcTo(oval, 270, 90);
PathTest.java 155 RectF oval = new RectF(LEFT, TOP, RIGHT, BOTTOM); local
156 path.arcTo(oval, 0.0f, 30.0f, true);
164 RectF oval = new RectF(LEFT, TOP, RIGHT, BOTTOM); local
165 path.arcTo(oval, 0.0f, 30.0f);
246 RectF oval = new RectF(LEFT, TOP, RIGHT, BOTTOM); local
247 path.addOval(oval, Path.Direction.CW);
370 RectF oval = new RectF(LEFT, TOP, RIGHT, BOTTOM); local
371 path.addArc(oval, 0.0f, 30.0f);
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeControlDRTWin.h 156 // Draws an oval the size of the control, filled with the specified color
158 void oval(SkColor color);
WebThemeControlDRTWin.cpp 179 void WebThemeControlDRTWin::oval(SkColor color) function in class:WebThemeControlDRTWin
392 oval(m_bgColor);
  /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/webkit/Source/WebCore/platform/graphics/android/
PathAndroid.cpp 173 SkRect oval; local
174 oval.set(cx - radius, cy - radius, cx + radius, cy + radius);
190 // so we just remember this, and at the end create a new path with an oval
207 m_path->arcTo(oval, startDegrees, sweepDegrees, false);
211 tmp.addOval(oval);
  /external/webkit/Source/WebCore/platform/graphics/android/context/
PlatformGraphicsContextSkia.cpp 297 SkRect oval(rect);
301 mCanvas->drawOval(oval, paint);
305 setupPaintStroke(&paint, &oval);
306 mCanvas->drawOval(oval, paint);
572 SkRect oval(r);
585 path.addArc(oval, SkIntToScalar(-startAngle), SkIntToScalar(-angleSpan));
  /frameworks/base/core/jni/android/graphics/
Path.cpp 155 static void arcTo(JNIEnv* env, jobject clazz, SkPath* obj, jobject oval, jfloat startAngle, jfloat sweepAngle, jboolean forceMoveTo) {
157 GraphicsJNI::jrectf_to_rect(env, oval, &oval_);
181 static void addOval(JNIEnv* env, jobject clazz, SkPath* obj, jobject oval, SkPath::Direction dir) {
183 GraphicsJNI::jrectf_to_rect(env, oval, &oval_);
194 static void addArc(JNIEnv* env, jobject clazz, SkPath* obj, jobject oval, jfloat startAngle, jfloat sweepAngle) {
196 GraphicsJNI::jrectf_to_rect(env, oval, &oval_);
  /external/skia/src/core/
SkPath.cpp 732 void SkPath::addOval(const SkRect& oval, Direction dir) {
733 SkAutoPathBoundsUpdate apbu(this, oval);
735 SkScalar cx = oval.centerX();
736 SkScalar cy = oval.centerY();
737 SkScalar rx = SkScalarHalf(oval.width());
738 SkScalar ry = SkScalarHalf(oval.height());
764 the provided bounds when we can (i.e. use oval.fLeft instead of cx-rx)
765 to ensure that we don't exceed the oval's bounds *ever*, since we want
766 to use oval for our fast-bounds, rather than have to recompute it.
768 const SkScalar L = oval.fLeft; // cx - r
    [all...]
SkCanvas.cpp     [all...]
  /external/libpcap/
gencode.h 250 int oval; member in struct:block
  /frameworks/base/core/java/android/view/
GLES20Canvas.java 717 public void drawArc(RectF oval, float startAngle, float sweepAngle, boolean useCenter,
721 nDrawArc(mRenderer, oval.left, oval.top, oval.right, oval.bottom,
    [all...]

Completed in 1334 milliseconds

1 2