HomeSort by relevance Sort by last modified time
    Searched full:radius (Results 126 - 150 of 1241) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/browser/ui/libgtk2ui/
native_theme_gtk2.cc 113 SkScalar radius = SkIntToScalar(menu_background.corner_radius); local
114 SkScalar radii[8] = {radius, radius, radius, radius,
115 radius, radius, radius, radius};
  /external/chromium_org/ui/keyboard/resources/elements/
kb-altkey-set.html 12 border-radius: 2px;
kb-altkey.html 28 border-top-left-radius: 2px;
29 border-bottom-left-radius: 2px;
33 border-top-right-radius: 2px;
34 border-bottom-right-radius: 2px;
  /external/ppp/pppd/plugins/radius/etc/
port-id-map 5 # is reported as part of a RADIUS authentication or accouting request.
  /external/replicaisland/res/drawable/
custom_toast_border.xml 11 <corners android:radius="10dp" />
  /external/wpa_supplicant_8/src/
Makefile 1 SUBDIRS=ap common crypto drivers eapol_auth eapol_supp eap_common eap_peer eap_server l2_packet p2p radius rsn_supp tls utils wps
  /external/wpa_supplicant_8/src/radius/
radius_das.h 2 * RADIUS Dynamic Authorization Server (DAS)
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
AttachmentGridDrawable.java 94 final float radius = mCoordinates.overflowDiameter / 2f; local
96 final float x = mCoordinates.overflowXEnd - mCoordinates.attachmentPreviewsX - radius;
97 final float y = mCoordinates.overflowYEnd - mCoordinates.attachmentPreviewsY - radius;
100 canvas.drawCircle(x, y, radius, mPaint);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Path.cpp 269 void Path::addArcTo(const FloatPoint& p1, const FloatPoint& p2, float radius)
271 m_path.arcTo(p1, p2, WebCoreFloatToSkScalar(radius));
317 void Path::addArc(const FloatPoint& p, float radius, float startAngle, float endAngle, bool anticlockwise)
319 addEllipse(p, radius, radius, startAngle, endAngle, anticlockwise);
362 FloatSize radius(roundingRadii);
365 // Apply the SVG corner radius constraints, per the rect section of the SVG shapes spec: if
366 // one of rx,ry is negative, then the other corner radius value is used. If both values are
370 if (radius.width() < 0)
371 radius.setWidth((radius.height() < 0) ? 0 : radius.height())
    [all...]
  /external/pixman/pixman/
pixman-radial-gradient.c 131 * solution that results in a positive radius otherwise).
173 * excluding those circles whose radius would be < 0. When a point
180 * The graphical result is the same as drawing the valid (radius > 0)
187 * have the same radius.
232 * radius associated to it is negative (or it falls outside the valid t
314 b = dot (v.vector[0], v.vector[1], radial->c1.radius,
315 radial->delta.x, radial->delta.y, radial->delta.radius);
320 -((pixman_fixed_48_16_t) radial->c1.radius),
321 v.vector[0], v.vector[1], radial->c1.radius);
335 radial->delta.radius,
    [all...]
  /external/libppp/src/
radius.c 26 * $FreeBSD: src/usr.sbin/ppp/radius.c,v 1.54.14.1 2010/12/21 17:10:29 kensmith Exp $
87 #include "radius.h"
148 demangle(struct radius *r, const void *mangled, size_t mlen,
167 /* We need the RADIUS Request-Authenticator */
169 log_Printf(LogWARN, "Cannot obtain the RADIUS request authenticator\n");
178 S = rad_server_secret(r->cx.rad); /* We need the RADIUS secret */
248 radius_Process(struct radius *r, int got)
271 "Radius(%s): ACCEPT received\n", stype);
280 "Radius(%s): REJECT received\n", stype);
290 "Radius: CHALLENGE received (can't handle yet)\n")
    [all...]
  /external/ppp/pppd/plugins/radius/
radius.c 3 * radius.c
5 * RADIUS plugin for pppd. Performs PAP, CHAP, MS-CHAP, MS-CHAPv2
6 * authentication using RADIUS.
27 "$Id: radius.c,v 1.28 2004/11/14 10:27:57 paulus Exp $";
60 { "radius-config-file", o_string, &config_file },
63 "Set Radius NAS-Port attribute value via libradiusclient library", OPT_PRIO | 1 },
65 "Set Radius NAS-Port attribute to number as in interface name (Default)", OPT_PRIOSUB | 0 },
146 * Initializes RADIUS plugin.
170 info("RADIUS plugin initialized.");
180 * Adds an av pair to be passed on to the RADIUS server on each request
    [all...]
options.h 46 /* RADIUS specific options */
51 {"login_radius", OT_STR, ST_UNDEF, "/usr/sbin/login.radius"},
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_2d/
graphics_2d.cc 185 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 * radius
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
tracing_controller.css 26 border-top-right-radius: 8px;
27 border-top-left-radius: 8px;
  /external/chromium/chrome/browser/resources/net_internals/
tabswitcherview.css 37 border-top-right-radius: 8px;
38 border-top-left-radius: 8px;
  /external/chromium-trace/trace-viewer/src/about_tracing/
tracing_controller.css 22 border-top-left-radius: 8px;
23 border-top-right-radius: 8px;
  /external/chromium_org/chrome/browser/resources/
about_credits.tmpl 22 border-radius:5px;
47 border-radius:3px;
  /external/chromium_org/chrome/browser/resources/chromeos/
salsa.css 42 border-radius: 20px;
47 border-radius: 10px;
  /external/chromium_org/chrome/browser/ui/cocoa/
styled_text_field_cell.mm 89 const CGFloat radius = [self cornerRadius];
112 halfLineWidth, halfLineWidth, radius,
122 radius, lineWidth, strokeColor);
127 lineWidth, radius,
138 lineWidth, radius) addClip];
145 radius - halfLineWidth, lineWidth,
160 bezelRect = NSInsetRect(bezelRect, radius - halfLineWidth, 0.0);
172 radius, lineWidth * 2, color);
  /external/chromium_org/ppapi/examples/scaling/
scaling.html 40 Green circle is 25 DIPs in radius.<br>
41 Red circle is 50 CSS pixels in radius.<br>
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
dialog.css 5 border-radius: 10px;
35 border-radius: 12px;
  /external/chromium_org/third_party/molokocacao/
NSBezierPath+MCAdditions.m 101 CGFloat radius = shadow.shadowBlurRadius;
102 NSRect bounds = NSInsetRect(self.bounds, -(ABS(offset.width) + radius), -(ABS(offset.height) + radius));
128 - (void)drawBlurWithColor:(NSColor *)color radius:(CGFloat)radius
130 NSRect bounds = NSInsetRect(self.bounds, -radius, -radius);
133 shadow.shadowBlurRadius = radius;
  /external/chromium_org/third_party/skia/include/effects/
SkBlurDrawLooper.h 28 The blur layer's dx/dy/radius aren't affected by the canvas
42 SkBlurDrawLooper(SkScalar radius, SkScalar dx, SkScalar dy, SkColor color,
  /external/chromium_org/ui/app_list/views/
speech_view.cc 90 int radius = local_bounds.width() / 2; local
92 radius * radius;
196 int radius = GetIndicatorRadius(level); local
197 origin.Offset(-radius, -radius);
199 gfx::Rect(origin, gfx::Size(radius * 2, radius * 2));

Completed in 1001 milliseconds

1 2 3 4 56 7 8 91011>>