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

1 2 3 4 56 7

  /external/webkit/WebCore/css/
CSSComputedStyleDeclaration.cpp 390 static PassRefPtr<CSSValue> getBorderRadiusCornerValue(IntSize radius)
392 if (radius.width() == radius.height())
393 return CSSPrimitiveValue::create(radius.width(), CSSPrimitiveValue::CSS_PX);
396 list->append(CSSPrimitiveValue::create(radius.width(), CSSPrimitiveValue::CSS_PX));
397 list->append(CSSPrimitiveValue::create(radius.height(), CSSPrimitiveValue::CSS_PX));
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
Makefile 587 # IEEE 802.1X/EAPOL state machines (e.g., for RADIUS authentication)
605 OBJS_h += ../src/radius/radius.o
606 OBJS_h += ../src/radius/radius_client.o
1031 OBJS_t := $(OBJS) $(OBJS_l2) eapol_test.o ../src/radius/radius.o ../src/radius/radius_client.o
  /frameworks/base/core/jni/android/graphics/
Matrix.cpp 317 static jfloat mapRadius(JNIEnv* env, jobject clazz, SkMatrix* matrix, jfloat radius) {
318 return SkScalarToFloat(matrix->mapRadius(SkFloatToScalar(radius)));
Path.cpp 179 static void addCircle(JNIEnv* env, jobject clazz, SkPath* obj, jfloat x, jfloat y, jfloat radius, SkPath::Direction dir) {
182 SkScalar radius_ = SkFloatToScalar(radius);
Paint.cpp 412 static void setShadowLayer(JNIEnv* env, jobject jpaint, jfloat radius,
417 if (radius <= 0) {
421 paint->setLooper(new SkBlurDrawLooper(SkFloatToScalar(radius),
  /external/quake/quake/src/QW/client/
cl_tent.c 241 dl->radius = 350;
gl_rsurf.c 88 rad = cl_dlights[lnum].radius;
1127 mins[i] = e->origin[i] - clmodel->radius;
1128 maxs[i] = e->origin[i] + clmodel->radius;
1166 (!cl_dlights[k].radius))
    [all...]
r_surf.c 83 rad = cl_dlights[lnum].radius;
  /external/quake/quake/src/WinQuake/
gl_rmain.cpp 630 add = cl_dlights[lnum].radius - Length(dist);
834 if (!dl->radius)
836 if (!dl->radius)
842 add = dl->radius - Length(dist);
    [all...]
gl_rsurf.cpp 88 rad = cl_dlights[lnum].radius;
1196 mins[i] = e->origin[i] - clmodel->radius;
1197 maxs[i] = e->origin[i] + clmodel->radius;
1235 (!cl_dlights[k].radius))
    [all...]
r_surf.cpp 83 rad = cl_dlights[lnum].radius;
  /external/skia/include/core/
SkCanvas.h 432 /** Draw the specified circle using the specified paint. If radius is <= 0,
437 @param radius The radius of the cirle to be drawn
440 void drawCircle(SkScalar cx, SkScalar cy, SkScalar radius,
460 @param rx The x-radius of the oval used to round the corners
461 @param ry The y-radius of the oval used to round the corners
    [all...]
SkMatrix.h 365 /** Return the mean radius of a circle after it has been mapped by
369 SkScalar mapRadius(SkScalar radius) const;
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 95 void WKDrawFocusRing(CGContextRef context, CGColorRef color, int radius);
98 // A radius of 0 means "use default focus ring radius".
  /frameworks/base/graphics/java/android/graphics/
Canvas.java     [all...]
Paint.java 791 * the main layer, with the specified offset and color, and blur radius.
792 * If radius is 0, then the shadow layer is removed.
794 public native void setShadowLayer(float radius, float dx, float dy,
    [all...]
  /frameworks/base/location/java/android/location/
LocationManager.java     [all...]
  /external/webkit/WebCore/inspector/front-end/
inspector.css 391 -webkit-border-radius: 0;
593 -webkit-border-radius: 7px;
818 border-bottom-left-radius: 0;
819 border-bottom-right-radius: 0;
1067 -webkit-border-radius: 5px;
1072 -webkit-border-radius: 4px;
    [all...]
  /build/tools/droiddoc/templates/assets/
android-developer-docs.css 690 border-radius:5px;
691 -moz-border-radius:5px;
692 -webkit-border-radius:5px;
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 639 int radius = (width - 1) / 2; local
641 addPath(Path::createRoundedRectangle(rects[i], FloatSize(radius, radius)));
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
LocationManagerTest.java 845 private void registerProximityListener(double latitude, double longitude, float radius,
848 mManager.addProximityAlert(latitude, longitude, radius, expiration, mPendingIntent);
    [all...]
  /external/wpa_supplicant/
Android.mk 347 # IEEE 802.1X/EAPOL state machines (e.g., for RADIUS authentication)
644 OBJS_t := $(OBJS) eapol_test.c radius.c radius_client.c
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix.java 926 * Return the mean radius of a circle after it has been mapped by
931 public float mapRadius(float radius) {
    [all...]
Paint.java 530 public void setShadowLayer(float radius, float dx, float dy, int color) {
    [all...]
  /development/samples/GlobalTime/src/com/android/globaltime/
GlobalTime.java 1247 float radius = lerp(smallRadius, bigRadius, lerp); local
    [all...]

Completed in 1817 milliseconds

1 2 3 4 56 7