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

1 2 3 4 5 6 7

  /frameworks/base/graphics/java/android/graphics/
CornerPathEffect.java 24 * the specified radius.
25 * @param radius Amount to round sharp angles between line segments.
27 public CornerPathEffect(float radius) {
28 native_instance = nativeCreate(radius);
31 private static native int nativeCreate(float radius);
RadialGradient.java 21 /** Create a shader that draws a radial gradient given the center and radius.
22 @param x The x-coordinate of the center of the radius
23 @param y The y-coordinate of the center of the radius
24 @param radius Must be positive. The radius of the circle for this gradient
31 public RadialGradient(float x, float y, float radius,
33 if (radius <= 0) {
34 throw new IllegalArgumentException("radius must be > 0");
42 native_instance = nativeCreate1(x, y, radius, colors, positions, tile.nativeInt);
45 /** Create a shader that draws a radial gradient given the center and radius
    [all...]
BlurMaskFilter.java 20 * This takes a mask, and blurs its edge by the specified radius. Whether or
42 * @param radius The radius to extend the blur from the original mask. Must be > 0.
46 public BlurMaskFilter(float radius, Blur style) {
47 native_instance = nativeConstructor(radius, style.native_int);
50 private static native int nativeConstructor(float radius, int style);
  /external/skia/src/animator/
SkDrawBlur.cpp 24 SK_MEMBER(radius, Float)
31 SkDrawBlur::SkDrawBlur() : radius(-1),
36 if (radius < 0)
38 return SkBlurMaskFilter::Create(radius, (SkBlurMaskFilter::BlurStyle) blurStyle);
SkDrawEmboss.cpp 25 SK_MEMBER(radius, Float),
33 SkDrawEmboss::SkDrawEmboss() : radius(-1) {
38 if (radius < 0 || direction.count() !=3)
40 return SkBlurMaskFilter::CreateEmboss(direction.begin(), ambient, specular, radius);
SkDrawBlur.h 29 SkScalar radius; member in class:SkDrawBlur
SkDrawEmboss.h 29 SkScalar radius, ambient, specular; member in class:SkDrawEmboss
  /external/wpa_supplicant/
radius_client.c 2 * hostapd / RADIUS client
18 #include "radius.h"
22 /* Defaults for RADIUS retransmit values (exponential backoff) */
31 #define RADIUS_CLIENT_NUM_FAILOVER 4 /* try to change RADIUS server after this
44 /* RADIUS message retransmit list */
46 u8 addr[ETH_ALEN]; /* STA/client address; used to find RADIUS messages
69 int auth_serv_sock; /* socket for authentication RADIUS messages */
70 int acct_serv_sock; /* socket for accounting RADIUS messages */
89 radius_change_server(struct radius_client_data *radius,
93 static int radius_client_init_acct(struct radius_client_data *radius);
214 struct radius_client_data *radius = eloop_ctx; local
503 struct radius_client_data *radius = eloop_ctx; local
835 struct radius_client_data *radius = eloop_ctx; local
967 struct radius_client_data *radius; local
    [all...]
radius_client.h 2 * hostapd / RADIUS client
45 /* @ClientPendingRequests: length of hapd->radius->msgs for matching
50 /* RADIUS Authentication and Accounting servers in priority order */
68 * RADIUS Accounting packages for the same STA
81 int radius_client_register(struct radius_client_data *radius,
88 int radius_client_send(struct radius_client_data *radius,
91 u8 radius_client_get_id(struct radius_client_data *radius);
93 void radius_client_flush(struct radius_client_data *radius, int only_auth);
96 void radius_client_deinit(struct radius_client_data *radius);
97 void radius_client_flush_auth(struct radius_client_data *radius, u8 *addr)
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
PaintDrawable.java 40 * Specify radius for the corners of the rectangle. If this is > 0, then the
42 * @param radius the radius for the corners of the rectangle
44 public void setCornerRadius(float radius) {
46 if (radius > 0) {
49 radii[i] = radius;
77 int radius = a.getDimensionPixelSize( local
79 setCornerRadius(radius);
84 com.android.internal.R.styleable.DrawableCorners_topLeftRadius, radius);
86 com.android.internal.R.styleable.DrawableCorners_topRightRadius, radius);
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius_client.c 2 * hostapd / RADIUS client
18 #include "radius.h"
22 /* Defaults for RADIUS retransmit values (exponential backoff) */
31 #define RADIUS_CLIENT_NUM_FAILOVER 4 /* try to change RADIUS server after this
45 /* RADIUS message retransmit list */
47 u8 addr[ETH_ALEN]; /* STA/client address; used to find RADIUS messages
70 int auth_serv_sock; /* socket for authentication RADIUS messages */
71 int acct_serv_sock; /* socket for accounting RADIUS messages */
90 radius_change_server(struct radius_client_data *radius,
94 static int radius_client_init_acct(struct radius_client_data *radius);
215 struct radius_client_data *radius = eloop_ctx; local
504 struct radius_client_data *radius = eloop_ctx; local
891 struct radius_client_data *radius = eloop_ctx; local
1043 struct radius_client_data *radius; local
    [all...]
radius_client.h 2 * hostapd / RADIUS client
45 /* @ClientPendingRequests: length of hapd->radius->msgs for matching
50 /* RADIUS Authentication and Accounting servers in priority order */
71 * RADIUS Accounting packages for the same STA
84 int radius_client_register(struct radius_client_data *radius,
91 int radius_client_send(struct radius_client_data *radius,
94 u8 radius_client_get_id(struct radius_client_data *radius);
96 void radius_client_flush(struct radius_client_data *radius, int only_auth);
99 void radius_client_deinit(struct radius_client_data *radius);
100 void radius_client_flush_auth(struct radius_client_data *radius, u8 *addr)
    [all...]
  /external/proguard/src/proguard/gui/splash/
CircleSprite.java 35 private final VariableInt radius; field in class:CircleSprite
43 * @param radius the variable radius of the circle.
48 VariableInt radius)
53 this.radius = radius;
63 int r = radius.getInt(time);
  /external/skia/src/effects/
SkBlurMaskFilter.cpp 25 SkBlurMaskFilterImpl(SkScalar radius, SkBlurMaskFilter::BlurStyle style);
48 SkMaskFilter* SkBlurMaskFilter::Create(SkScalar radius, SkBlurMaskFilter::BlurStyle style)
50 if (radius <= 0 || (unsigned)style >= SkBlurMaskFilter::kBlurStyleCount)
53 return SkNEW_ARGS(SkBlurMaskFilterImpl, (radius, style));
58 SkBlurMaskFilterImpl::SkBlurMaskFilterImpl(SkScalar radius, SkBlurMaskFilter::BlurStyle style)
59 : fRadius(radius), fBlurStyle(style)
72 SkASSERT(radius >= 0);
83 SkScalar radius = matrix.mapRadius(fRadius); local
85 // handset) we limit the radius so something manageable. (as opposed to
88 radius = SkMinScalar(radius, MAX_RADIUS)
    [all...]
SkBlurMask.h 34 static bool Blur(SkMask* dst, const SkMask& src, SkScalar radius, Style);
SkBlurDrawLooper.cpp 7 SkBlurDrawLooper::SkBlurDrawLooper(SkScalar radius, SkScalar dx, SkScalar dy,
11 if (radius > 0)
12 fBlur = SkBlurMaskFilter::Create(radius,
  /development/samples/GlobalTime/src/com/android/globaltime/
Clock.java 59 * radius r0 to radius r1 about the center point (cx, cy),
63 * @param radius the radius of the outer rim of the clock
67 * @param r0 the starting radius for the line
68 * @param r1 the ending radius for the line
71 float radius, float pos, float cx, float cy, float r0, float r1) {
83 float norm = (radius / 2.0f) / (float) Math.sqrt(ox * ox + oy * oy);
186 * @param radius the radius of the clock fac
    [all...]
LatLongSphere.java 22 float radius, int lats, int longs,
71 // with the given center and radius
72 vertices[vidx++] = toFixed(x * radius + centerX);
73 vertices[vidx++] = toFixed(y * radius + centerY);
74 vertices[vidx++] = toFixed(z * radius + centerZ);
  /external/ppp/pppd/plugins/radius/etc/
radiusclient.conf 4 # authentication is used. possible values are: "radius" and "local".
5 # if you specify "radius,local" then the RADIUS server is asked
8 auth_order radius
27 # RADIUS settings
29 # RADIUS server to use for authentication requests. this config
34 # RADIUS listens separated by a colon from the hostname. if
35 # no port is specified /etc/services is consulted of the radius
39 # RADIUS server to use for accouting requests. All that I
45 # between the RADIUS client and serve
    [all...]
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerRadialGradient.cpp 70 void SVGPaintServerRadialGradient::setGradientRadius(float radius)
72 m_radius = radius;
81 << " [radius=" << gradientRadius() << "]";
  /external/skia/include/effects/
SkBlurMaskFilter.h 36 @param radius The radius to extend the blur from the original mask. Must be > 0.
40 static SkMaskFilter* Create(SkScalar radius, BlurStyle style);
SkCornerPathEffect.h 29 /** radius must be > 0 to have an effect. It specifies the distance from each corner
32 SkCornerPathEffect(SkScalar radius);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
RadialGradient.java 24 * Create a shader that draws a radial gradient given the center and radius.
26 * @param x The x-coordinate of the center of the radius
27 * @param y The y-coordinate of the center of the radius
28 * @param radius Must be positive. The radius of the circle for this
37 public RadialGradient(float x, float y, float radius, int colors[], float positions[],
40 if (radius <= 0) {
41 throw new IllegalArgumentException("radius must be > 0");
44 mPaint = new RadialGradientPaint(x, y, radius, mColors, mPositions, tile);
48 * Create a shader that draws a radial gradient given the center and radius
    [all...]
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContextMac.mm 46 static void drawFocusRingToContext(CGContextRef context, RetainPtr<CGPathRef> focusRingPath, RetainPtr<CGColorRef> colorRef, int radius)
53 wkDrawFocusRing(context, colorRef.get(), radius);
64 int radius = (width - 1) / 2;
65 offset += radius;
75 drawFocusRingToContext(platformContext(), focusRingPath, colorRef, radius);
83 int radius = (width - 1) / 2;
84 offset += radius;
94 drawFocusRingToContext(platformContext(), focusRingPath, colorRef, radius);
  /external/skia/gm/
filltypes.cpp 9 const SkScalar radius = SkIntToScalar(45); local
10 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
11 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);

Completed in 295 milliseconds

1 2 3 4 5 6 7