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

1234567891011>>

/external/skia/src/effects/
H A DSkCornerPathEffect.cpp16 SkCornerPathEffect::SkCornerPathEffect(SkScalar radius) : fRadius(radius) {} argument
19 static bool ComputeStep(const SkPoint& a, const SkPoint& b, SkScalar radius, argument
25 if (dist <= radius * 2) {
29 step->scale(SkScalarDiv(radius, dist));
/external/chromium_org/native_client_sdk/src/examples/api/graphics_2d/
H A Dgraphics_2d.cc185 int radius = kMouseRadius; local
188 int minx = cx - radius <= 0 ? 1 : cx - radius;
189 int maxx = cx + radius >= width ? width - 1 : cx + radius;
190 int miny = cy - radius <= 0 ? 1 : cy - radius;
191 int maxy = cy + radius >= height ? height - 1 : cy + radius;
194 if ((x - cx) * (x - cx) + (y - cy) * (y - cy) < radius * radiu
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBasicShapes.h75 CSSPrimitiveValue* radius() const { return m_radius.get(); } function in class:WebCore::FINAL
79 void setRadius(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radius) { m_radius = radius; } argument
196 void setTopLeftRadius(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radius) { m_topLeftRadius = radius; } argument
197 void setTopRightRadius(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radius) { m_topRightRadius = radius; } argument
198 void setBottomRightRadius(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radius) { m_bottomRightRadius = radius; } argument
199 void setBottomLeftRadius(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radius) { m_bottomLeftRadiu argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
H A DPolygonShape.cpp95 static float circleXIntercept(float y, float radius) argument
97 ASSERT(radius > 0);
98 return radius * sqrt(1 - (y * y) / (radius * radius));
101 static FloatShapeInterval clippedCircleXRange(const FloatPoint& center, float radius, float y1, float y2) argument
103 if (y1 > center.y() + radius || y2 < center.y() - radius)
107 return FloatShapeInterval(center.x() - radius, center.x() + radius);
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSphereCollisionVolume.java27 public SphereCollisionVolume(float radius, float centerX, float centerY) { argument
29 mRadius = radius;
35 public SphereCollisionVolume(float radius, float centerX, float centerY, int hit) { argument
37 mRadius = radius;
75 public void setRadius(float radius) { argument
76 mRadius = radius;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DDrawLooperBuilder.cpp66 // This replicates the old skia behavior when it used to take radius for blur. Now it takes sigma.
67 static SkScalar RadiusToSigma(SkScalar radius) argument
69 SkASSERT(radius > 0);
70 return 0.57735f * radius + 0.5f;
/external/chromium_org/third_party/skia/tests/
H A DShaderImageFilterTest.cpp31 SkScalar radius = SkIntToScalar(5); local
36 center, radius, colors, pos, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode);
47 center, radius, colors, pos, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode);
/external/skia/tests/
H A DShaderImageFilterTest.cpp31 SkScalar radius = SkIntToScalar(5); local
36 center, radius, colors, pos, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode);
47 center, radius, colors, pos, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode);
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dsalsa.css42 border-radius: 20px;
47 border-radius: 10px;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformTouchPoint.h53 FloatSize radius() const { return m_radius; } function in class:WebCore::PlatformTouchPoint
/external/chromium_org/third_party/skia/gm/rebaseline_server/static/
H A Dview.css17 border-top-left-radius: 5px;
18 border-top-right-radius: 5px;
/external/chromium_org/third_party/skia/include/effects/
H A DSkBlurMaskFilter.h19 * If radius > 0, return the corresponding sigma, else return 0. Use this to convert from the
20 * (legacy) idea of specify the blur "radius" to the standard notion of specifying its sigma.
22 static SkScalar ConvertRadiusToSigma(SkScalar radius);
26 /** The blur layer's radius is not affected by transforms */
/external/chromium_org/third_party/skia/samplecode/
H A DSampleRotateCircles.cpp106 void draw_real_circle(SkCanvas* canvas, SkScalar radius) { argument
107 int w = SkScalarCeilToInt(radius * 2);
116 SkScalar cx = radius;
117 SkScalar cy = radius;
121 if (d <= radius) {
131 SkScalar radius = 256; local
134 draw_real_circle(canvas, radius);
140 canvas->drawCircle(radius, radius, radius, pain
240 const SkScalar radius = width / 2; local
[all...]
/external/skia/gm/rebaseline_server/static/
H A Dview.css17 border-top-left-radius: 5px;
18 border-top-right-radius: 5px;
/external/skia/include/effects/
H A DSkBlurMaskFilter.h19 * If radius > 0, return the corresponding sigma, else return 0. Use this to convert from the
20 * (legacy) idea of specify the blur "radius" to the standard notion of specifying its sigma.
22 static SkScalar ConvertRadiusToSigma(SkScalar radius);
26 /** The blur layer's radius is not affected by transforms */
/external/skia/samplecode/
H A DSampleRotateCircles.cpp106 void draw_real_circle(SkCanvas* canvas, SkScalar radius) { argument
107 int w = SkScalarCeilToInt(radius * 2);
116 SkScalar cx = radius;
117 SkScalar cy = radius;
121 if (d <= radius) {
131 SkScalar radius = 256; local
134 draw_real_circle(canvas, radius);
140 canvas->drawCircle(radius, radius, radius, pain
240 const SkScalar radius = width / 2; local
[all...]
/external/wpa_supplicant_8/hostapd/src/
H A DMakefile1 SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae radius rsn_supp tls utils wps
/external/wpa_supplicant_8/src/
H A DMakefile1 SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae radius rsn_supp tls utils wps
/external/wpa_supplicant_8/wpa_supplicant/src/
H A DMakefile1 SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p pae radius rsn_supp tls utils wps
/external/chromium_org/third_party/WebKit/Tools/qunit/qunit/
H A Dqunit.css41 border-radius: 15px 15px 0 0;
42 -moz-border-radius: 15px 15px 0 0;
43 -webkit-border-top-right-radius: 15px;
44 -webkit-border-top-left-radius: 15px;
111 border-radius: 15px;
112 -moz-border-radius: 15px;
113 -webkit-border-radius: 15px;
192 border-radius: 0 0 15px 15px;
193 -moz-border-radius: 0 0 15px 15px;
194 -webkit-border-bottom-right-radius
[all...]
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrRRectEffect.cpp172 // The inner rect is the rrect bounds inset by the radius. Its left, top, right, and bottom
191 // the rrect will have a (0,0) vector at all four corners. So long as the radius > 0.5 they will
307 SkScalar radius = 0; local
311 radius = rrect.getSimpleRadii().fX;
312 SkASSERT(radius >= kRadiusMin);
313 rect.inset(radius, radius);
316 radius = rrect.radii(SkRRect::kUpperLeft_Corner).fX;
317 rect.fLeft += radius;
318 rect.fTop += radius;
[all...]
/external/skia/src/gpu/effects/
H A DGrRRectEffect.cpp172 // The inner rect is the rrect bounds inset by the radius. Its left, top, right, and bottom
191 // the rrect will have a (0,0) vector at all four corners. So long as the radius > 0.5 they will
307 SkScalar radius = 0; local
311 radius = rrect.getSimpleRadii().fX;
312 SkASSERT(radius >= kRadiusMin);
313 rect.inset(radius, radius);
316 radius = rrect.radii(SkRRect::kUpperLeft_Corner).fX;
317 rect.fLeft += radius;
318 rect.fTop += radius;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DBasicShapes.h166 const BasicShapeRadius& radius() const { return m_radius; } function in class:WebCore::FINAL
171 void setRadius(BasicShapeRadius radius) { m_radius = radius; } argument
267 void setTopLeftRadius(const LengthSize& radius) { m_topLeftRadius = radius; } argument
268 void setTopRightRadius(const LengthSize& radius) { m_topRightRadius = radius; } argument
269 void setBottomRightRadius(const LengthSize& radius) { m_bottomRightRadius = radius; } argument
270 void setBottomLeftRadius(const LengthSize& radius) { m_bottomLeftRadiu argument
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkStrokerPriv.cpp88 /* In the degenerate case that the stroke radius is larger than our segments
102 SkScalar radius, SkScalar invMiterLimit, bool, bool)
105 afterUnitNormal.scale(radius, &after);
119 SkScalar radius, SkScalar invMiterLimit, bool, bool)
141 matrix.setScale(radius, radius);
151 after.scale(radius);
160 SkScalar radius, SkScalar invMiterLimit,
196 mid.set(SkScalarMul(before.fX + after.fX, radius),
197 SkScalarMul(before.fY + after.fY, radius));
100 BluntJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, const SkPoint& pivot, const SkVector& afterUnitNormal, SkScalar radius, SkScalar invMiterLimit, bool, bool) argument
117 RoundJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, const SkPoint& pivot, const SkVector& afterUnitNormal, SkScalar radius, SkScalar invMiterLimit, bool, bool) argument
158 MiterJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, const SkPoint& pivot, const SkVector& afterUnitNormal, SkScalar radius, SkScalar invMiterLimit, bool prevIsLine, bool currIsLine) argument
[all...]
/external/skia/src/core/
H A DSkStrokerPriv.cpp88 /* In the degenerate case that the stroke radius is larger than our segments
102 SkScalar radius, SkScalar invMiterLimit, bool, bool)
105 afterUnitNormal.scale(radius, &after);
119 SkScalar radius, SkScalar invMiterLimit, bool, bool)
141 matrix.setScale(radius, radius);
151 after.scale(radius);
160 SkScalar radius, SkScalar invMiterLimit,
196 mid.set(SkScalarMul(before.fX + after.fX, radius),
197 SkScalarMul(before.fY + after.fY, radius));
100 BluntJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, const SkPoint& pivot, const SkVector& afterUnitNormal, SkScalar radius, SkScalar invMiterLimit, bool, bool) argument
117 RoundJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, const SkPoint& pivot, const SkVector& afterUnitNormal, SkScalar radius, SkScalar invMiterLimit, bool, bool) argument
158 MiterJoiner(SkPath* outer, SkPath* inner, const SkVector& beforeUnitNormal, const SkPoint& pivot, const SkVector& afterUnitNormal, SkScalar radius, SkScalar invMiterLimit, bool prevIsLine, bool currIsLine) argument
[all...]

Completed in 1099 milliseconds

1234567891011>>