Searched refs:radius (Results 51 - 75 of 238) sorted by relevance

12345678910

/external/chromium/chrome/browser/resources/gpu_internals/
H A Dtab_control.css45 border-top-right-radius: 8px;
46 border-top-left-radius: 8px;
/external/chromium/chrome/browser/resources/net_internals/
H A Dtabswitcherview.css37 border-top-right-radius: 8px;
38 border-top-left-radius: 8px;
/external/chromium/chrome/browser/resources/options/
H A Dsubpages_tab_controls.css17 border-top-left-radius: 3px;
18 border-top-right-radius: 3px;
/external/clang/test/FixIt/
H A Dtypo.cpp30 float area(float radius, // expected-note{{'radius' declared here}} argument
32 return radious * pi; // expected-error{{did you mean 'radius'?}}
/external/skia/include/effects/
H A DSkGradientShader.h53 /** Returns a shader that generates a radial gradient given the center and radius.
57 It is an error for colorCount to be < 2, or for radius to be <= 0.
59 @param radius Must be positive. The radius of the circle for this gradient
70 static SkShader* CreateRadial( const SkPoint& center, SkScalar radius,
75 /** Returns a shader that generates a radial gradient given the start position, start radius, end position and end radius.
82 @param startRadius Must be positive. The radius of the start circle for this gradient.
84 @param endRadius Must be positive. The radius of the end circle for this gradient.
H A DSkRectShape.h33 void setCircle(SkScalar x, SkScalar y, SkScalar radius);
H A DSkBlurDrawLooper.h36 The blur layer's dx/dy/radius aren't affected by the canvas
46 SkBlurDrawLooper(SkScalar radius, SkScalar dx, SkScalar dy, SkColor color,
/external/skia/src/core/
H A DSkStrokerPriv.h42 SkScalar radius, SkScalar invMiterLimit,
/external/skia/src/effects/
H A DSkEmbossMaskFilter.cpp77 SkScalar radius = matrix.mapRadius(fBlurRadius); local
79 if (!SkBlurMask::Blur(dst, src, radius, SkBlurMask::kInner_Style,
86 margin->set(SkScalarCeil(radius), SkScalarCeil(radius));
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DPathWx.cpp172 void Path::addArcTo(const FloatPoint& point1, const FloatPoint& point2, float radius) argument
176 m_path->AddArcToPoint(point1.x(), point1.y(), point2.x(), point2.y(), radius);
188 void Path::addArc(const FloatPoint& point, float radius, float startAngle, float endAngle, bool clockwise) argument
192 m_path->AddArc(point.x(), point.y(), radius, startAngle, endAngle, clockwise);
/external/webkit/Source/WebCore/svg/
H A DSVGRadialGradientElement.h37 void calculateFocalCenterPointsAndRadius(const RadialGradientAttributes&, FloatPoint& focalPoint, FloatPoint& centerPoint, float& radius);
/external/opencv/cv/src/
H A Dcvshapedescr.cpp135 CvPoint2D32f pt2, CvPoint2D32f * center, float *radius )
153 *radius = (float) icvDistanceL2_32f( *center, pt0 );
158 radius = 0;
166 CV_INLINE double icvIsPtInCircle( CvPoint2D32f pt, CvPoint2D32f center, float radius )
170 return (double)radius*radius - dx*dx - dy*dy;
184 float radius, min_radius = FLT_MAX; local
188 radius = 1.f;
218 radius = (float)(icvDistanceL2_32f( pts[idxs[0]], center )*1.03);
219 if( radius <
283 float radius = 0; local
[all...]
H A Dcvsmooth.cpp1047 int i, j, k, maxk, radius;
1062 radius = cvRound(sigma_space*1.5);
1064 radius = d/2;
1065 radius = MAX(radius, 1);
1066 d = radius*2 + 1;
1068 CV_CALL( temp = cvCreateMat( src->rows + radius*2,
1069 src->cols + radius*2, src->type ));
1070 CV_CALL( cvCopyMakeBorder( src, temp, cvPoint(radius,radius), IPL_BORDER_REPLICAT
[all...]
/external/skia/samplecode/
H A DSampleStrokePath.cpp51 SkScalar radius = 1.f; local
53 printf("src [%d %d %d %d] radius %g\n", src.fBounds.fLeft, src.fBounds.fTop,
54 src.fBounds.fRight, src.fBounds.fBottom, radius);
56 SkBlurMask::Blur(&dst, src, radius, SkBlurMask::kNormal_Style);
164 SkScalar radius = 4; local
167 mf = SkBlurMaskFilter::Create(radius, gStyle[x - 1]);
171 radius *= 0.75f;
/external/chromium/chrome/browser/ui/views/tabs/
H A Dtab.cc399 int radius = kMiniTitleChangeGradientRadius; local
400 int x0 = width() + radius - kMiniTitleChangeInitialXOffset;
401 int x1 = radius;
402 int x2 = -radius;
418 SkIntToScalar(radius),
425 hover_canvas.DrawRectInt(x - radius, -radius, radius * 2, radius * 2, paint);
578 int radius local
[all...]
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPathQt.cpp195 void Path::addArcTo(const FloatPoint& p1, const FloatPoint& p2, float radius) argument
214 float tangent = radius / tan(acos(cos_phi) / 2);
220 float factor_ra = radius / orth_p1p0_length;
252 addArc(p, radius, sa, ea, anticlockwise);
264 qreal radius = r; local
281 double xs = xc - radius;
282 double ys = yc - radius;
283 double width = radius*2;
284 double height = radius*2;
313 else if (!radius) {
[all...]
/external/chromium/chrome/browser/ui/views/notifications/
H A Dballoon_view.cc382 SkScalar radius = SkIntToScalar(BubbleBorder::GetCornerRadius()); local
383 SkScalar spline_radius = radius -
384 SkScalarMul(radius, (SK_ScalarSqrt2 - SK_Scalar1) * 4 / 3);
392 path->lineTo(right, bottom - radius);
395 right - radius, bottom);
396 path->lineTo(left + radius, bottom);
399 left, bottom - radius);
406 SkScalar radius = SkIntToScalar(BubbleBorder::GetCornerRadius()); local
407 SkScalar spline_radius = radius -
408 SkScalarMul(radius, (SK_ScalarSqrt
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/
H A DPathAndroid.cpp145 void Path::addArcTo(const FloatPoint& p1, const FloatPoint& p2, float radius) argument
149 SkFloatToScalar(radius));
172 SkScalar radius = SkFloatToScalar(r); local
175 oval.set(cx - radius, cy - radius, cx + radius, cy + radius);
/external/opencv/cvaux/src/
H A Dcvlcm.cpp376 if(pNode->radius > LCM->maxWidth)
381 if(pNode1->radius > LCM->maxWidth)
383 if(pNode1->radius == 0)
453 if(pNode0->radius <= pLCM->maxWidth && pNode1->radius <= pLCM->maxWidth)
539 width += pNode0->radius;
546 if(pNode1->radius >= pLCM->maxWidth)
550 width += pNode1->radius;
563 width += LCMData.pnode->radius;
638 if(!pNode->radius)
[all...]
/external/webkit/Source/WebKit2/UIProcess/
H A DFindIndicator.cpp137 static Path pathWithRoundedRect(const FloatRect& pathRect, float radius) argument
140 path.addRoundedRect(pathRect, FloatSize(radius, radius));
/external/quake/quake/src/QW/client/
H A Dgl_rlight.c104 rad = light->radius * 0.35;
109 AddLightBlend (1, 0.5, 0, light->radius * 0.0003);
163 if (l->die < cl.time || !l->radius)
202 if (dist > light->radius)
207 if (dist < -light->radius)
249 if (l->die < cl.time || !l->radius)
/external/quake/quake/src/WinQuake/
H A Dgl_rlight.cpp82 rad = light->radius * 0.35;
87 AddLightBlend (1, 0.5, 0, light->radius * 0.0003);
166 if (l->die < cl.time || !l->radius)
205 if (dist > light->radius)
210 if (dist < -light->radius)
252 if (l->die < cl.time || !l->radius)
/external/webkit/Source/WebCore/platform/graphics/
H A DPath.h133 void addArcTo(const FloatPoint&, const FloatPoint&, float radius);
136 void addArc(const FloatPoint&, float radius, float startAngle, float endAngle, bool anticlockwise);
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPathWinCE.cpp91 void Path::addArcTo(const FloatPoint& p1, const FloatPoint& p2, float radius) argument
93 m_path->addArcTo(p1, p2, radius);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebThemeControlDRTWin.cpp166 SkScalar radius = SkIntToScalar(5); local
172 m_canvas->drawRoundRect(rect, radius, radius, paint);
176 m_canvas->drawRoundRect(rect, radius, radius, paint);
194 void WebThemeControlDRTWin::circle(SkScalar radius, SkColor color) argument
202 m_canvas->drawCircle(cx, cy, radius, paint);
206 m_canvas->drawCircle(cx, cy, radius, paint);

Completed in 1796 milliseconds

12345678910