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

1 2 3 4

  /external/chromium_org/third_party/openssl/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/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/skia/gm/
ovals.cpp 140 SkRect oval = SkRect::MakeLTRB(-20, -30, 20, 30); variable
159 // position the oval, and make it at off-integer coords.
169 canvas->drawRect(oval, rectPaint);
170 canvas->drawOval(oval, fPaints[i]);
180 // non-scaled tall and skinny oval
182 SkRect oval = SkRect::MakeLTRB(-20, -60, 20, 60); variable
184 // position the oval, and make it at off-integer coords.
191 canvas->drawRect(oval, rectPaint);
192 canvas->drawOval(oval, fPaints[i]);
196 // non-scaled wide and short oval
198 SkRect oval = SkRect::MakeLTRB(-80, -30, 80, 30); variable
215 SkRect oval = SkRect::MakeLTRB(0, -60, 1, 60); variable
230 SkRect oval = SkRect::MakeLTRB(-80, -1, 80, 0); variable
    [all...]
  /external/chromium_org/third_party/openssl/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))
  /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 111 public void actionDown(float x, float y, Oval oval) {
117 mDownCenterX = oval.getCenterX();
118 mDownCenterY = oval.getCenterY();
119 mDownRadiusX = oval.getRadiusX();
120 mDownRadiusY = oval.getRadiusY();
124 public void actionMove(int handle, float x, float y, Oval oval) {
145 oval.setCenter((x - ctrdx), (y - ctrdy));
153 oval.setRadiusY(Math.abs(x - oval.getCenterY() + sign * raddx))
    [all...]
ImageVignette.java 48 static class OvalSpaceAdapter implements Oval {
49 private Oval mOval;
58 public void setImageOval(Oval oval) {
59 mOval = oval;
  /external/chromium_org/third_party/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 155 /** Returns true if the path is an oval.
157 * @param rect returns the bounding rect of this oval. It's a circle
160 * @return true if this path is an oval.
161 * Tracking whether a path is an oval is considered an
469 @param oval The bounding oval defining the shape and size of the arc
475 void arcTo(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
619 * Add a closed oval contour to the path
621 * @param oval The bounding oval to add as a closed contour to the pat
    [all...]
  /external/skia/include/core/
SkRRect.h 71 //!< The RR is actually a (non-empty) oval (i.e., all x radii are equal
76 //!< are equal but it is not an oval (i.e., there are lines between
138 * Set this RR to match the supplied oval. All x radii will equal half the
141 void setOval(const SkRect& oval) {
142 if (oval.isEmpty()) {
147 SkScalar xRad = SkScalarHalf(oval.width());
148 SkScalar yRad = SkScalarHalf(oval.height());
150 fRect = oval;
  /frameworks/base/graphics/java/android/graphics/
Path.java 424 * @param oval The bounds of oval defining shape and size of the arc
430 public void arcTo(RectF oval, float startAngle, float sweepAngle,
433 native_arcTo(mNativePath, oval, startAngle, sweepAngle, forceMoveTo);
443 * @param oval The bounds of oval defining shape and size of the arc
447 public void arcTo(RectF oval, float startAngle, float sweepAngle) {
449 native_arcTo(mNativePath, oval, startAngle, sweepAngle, false);
520 * Add a closed oval contour to the path
522 * @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 695 /*package*/ static void native_drawOval(int nativeCanvas, final RectF oval, int paint) {
696 if (oval.right > oval.left && oval.bottom > oval.top) {
706 graphics.fillOval((int)oval.left, (int)oval.top,
707 (int)oval.width(), (int)oval.height());
712 graphics.drawOval((int)oval.left, (int)oval.top
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrOvalRenderer.h 36 const SkRect& oval, const SkStrokeRec& stroke);
  /external/skia/include/gpu/
GrOvalRenderer.h 36 const SkRect& oval, const SkStrokeRec& stroke);
  /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/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestThemeControlWin.h 158 // Draws an oval the size of the control, filled with the specified color
160 void oval(SkColor);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Path.cpp 286 SkRect oval; local
287 oval.set(cx - radius, cy - radius, cx + radius, cy + radius);
295 m_path.arcTo(oval, startDegrees, 0, false);
297 m_path.addOval(oval, anticlockwise ?
300 m_path.arcTo(oval, startDegrees + sweepDegrees, 0, true);
313 m_path.arcTo(oval, startDegrees, sweepDegrees, false);
  /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/chromium_org/chrome/browser/download/
download_shelf.cc 135 SkRect oval; local
136 oval.set(SkIntToScalar(bounds.x()),
141 path.arcTo(oval,
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp     [all...]
  /external/skia/src/core/
SkPath.cpp     [all...]

Completed in 483 milliseconds

1 2 3 4