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

1 2 3

  /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);
  /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))
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
EclipseControl.java 103 public void actionDown(float x, float y, Oval oval) {
109 mDownCenterX = oval.getCenterX();
110 mDownCenterY = oval.getCenterY();
111 mDownRadiusX = oval.getRadiusX();
112 mDownRadiusY = oval.getRadiusY();
115 public void actionMove(int handle, float x, float y, Oval oval) {
133 oval.setCenter(x - ctrdx, y - ctrdy);
141 oval.setRadiusY(Math.abs(x - oval.getCenterY() + sign * raddx))
    [all...]
  /external/skia/include/core/
SkRRect.h 70 //!< The RR is actually a (non-empty) oval (i.e., all x radii are equal
75 //!< are equal but it is not an oval (i.e., there are lines between
137 * Set this RR to match the supplied oval. All x radii will equal half the
140 void setOval(const SkRect& oval) {
141 if (oval.isEmpty()) {
146 SkScalar xRad = SkScalarHalf(oval.width());
147 SkScalar yRad = SkScalarHalf(oval.height());
149 fRect = oval;
SkPath.h 160 /** Returns true if the path is an oval.
162 * @param rect returns the bounding rect of this oval. It's a circle
165 * @return true if this path is an oval.
166 * Tracking whether a path is an oval is considered an
478 @param oval The bounding oval defining the shape and size of the arc
484 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
615 * Add a closed oval contour to the path
617 * @param oval The bounding oval to add as a closed contour to the pat
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 335 * @param oval The bounds of oval defining shape and size of the arc
341 public void arcTo(RectF oval, float startAngle, float sweepAngle,
344 native_arcTo(mNativePath, oval, startAngle, sweepAngle, forceMoveTo);
354 * @param oval The bounds of oval defining shape and size of the arc
358 public void arcTo(RectF oval, float startAngle, float sweepAngle) {
360 native_arcTo(mNativePath, oval, startAngle, sweepAngle, false);
431 * Add a closed oval contour to the path
433 * @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 697 /*package*/ static void native_drawOval(int nativeCanvas, final RectF oval, int paint) {
698 if (oval.right > oval.left && oval.bottom > oval.top) {
708 graphics.fillOval((int)oval.left, (int)oval.top,
709 (int)oval.width(), (int)oval.height());
714 graphics.drawOval((int)oval.left, (int)oval.top
    [all...]
  /external/skia/legacy/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...]
  /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);
  /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/skia/src/core/
SkPath.cpp     [all...]
  /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/legacy/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...]
  /external/skia/src/gpu/
GrContext.cpp 942 const GrRect& oval,
945 if (!canDrawOval(paint, oval, stroke)) {
947 path.addOval(oval);
952 internalDrawOval(paint, oval, stroke);
    [all...]
  /external/skia/include/gpu/
GrContext.h 444 * Draws an oval.
447 * @param oval the bounding rect of the oval.
451 const GrRect& oval,
    [all...]
  /external/skia/tests/
RoundRectTest.cpp 185 // Test out the cases when the RR degenerates to an oval
211 SkRect oval; local
217 oval = rr1.rect();
218 REPORTER_ASSERT(reporter, oval == rect);
  /external/libpcap/
gencode.h 250 int oval; member in struct:block

Completed in 482 milliseconds

1 2 3