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

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/ui/views/controls/menu/
menu_image_util.cc 62 int radius = kIndicatorSize / 2; variable
63 canvas->sk_canvas()->drawCircle(radius, radius, radius, paint);
68 canvas->sk_canvas()->drawCircle(radius, radius, radius, paint);
83 canvas->sk_canvas()->drawCircle(radius, radius,
90 canvas->sk_canvas()->drawCircle(radius, radius
    [all...]
  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_MeteringTest.cpp 97 // radius. Convert the coordinate to the coordinates accepted by Android
118 float radius = sqrt((*checkerRadius)[3][i]); local
120 ((*checkerCenter)[3][i].y() - radius)
123 ((*checkerCenter)[3][i].x() - radius)
126 ((*checkerCenter)[3][i].y() + radius)
129 ((*checkerCenter)[3][i].x() + radius)
133 (*checkerCenter)[3][i].x(), (*checkerCenter)[3][i].y(), radius);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BlurMaskFilterTest.java 32 private static final int RADIUS = 5;
38 BlurMaskFilter filter = new BlurMaskFilter(RADIUS, Blur.NORMAL);
48 if (x < CENTER - OFFSET - RADIUS || y < CENTER - OFFSET - RADIUS) {
49 // check that color didn't bleed (much) beyond radius
51 } else if (x > CENTER - OFFSET + RADIUS && y > CENTER - OFFSET + RADIUS) {
  /external/chromium_org/ui/views/controls/
glow_hover_controller.cc 90 int radius = view_->width() / 3; local
101 center_point, SkIntToScalar(radius), colors, NULL, 2,
103 // Shader can end up null when radius = 0.
110 hover_canvas.DrawRect(gfx::Rect(location_.x() - radius,
111 location_.y() - radius,
112 radius * 2, radius * 2), paint);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Sphere.java 81 public float radius; field in class:Sphere
99 * @param radius
100 * The radius of the sphere.
102 public Sphere(int zSamples, int radialSamples, float radius) {
103 this(zSamples, radialSamples, radius, false, false);
113 * @param radius
114 * The radius of the sphere.
120 public Sphere(int zSamples, int radialSamples, float radius, boolean useEvenSlices, boolean interior) {
121 updateGeometry(zSamples, radialSamples, radius, useEvenSlices, interior);
129 return radius;
    [all...]
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareRequest.java 39 private void setCircularGeofence(double latitude, double longitude, double radius) {
42 mRadius = radius;
51 * @param radius Radius of the geofence (in meters)
54 double longitude, double radius) {
56 geofenceRequest.setCircularGeofence(latitude, longitude, radius);
121 * Returns the radius of this geofence.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridLayoutPainter.java 265 int radius = mRule.getNewCellSize(); local
272 gc.drawLine(b.x, y - radius, b.x2(), y - radius);
273 gc.drawLine(b.x, y + radius, b.x2(), y + radius);
278 gc.drawLine(x - radius, b.y, x - radius, b.y2());
279 gc.drawLine(x + radius, b.y, x + radius, b.y2());
282 gc.drawRect(b.x + 2 * radius, b.y + 2 * radius
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkMorphologyImageFilter.cpp 48 int radius, int width, int height,
55 radius = SkMin32(radius, width - 1);
56 const SkPMColor* upperSrc = src + radius * srcStrideX;
78 if (x >= radius) src += srcStrideX;
79 if (x + radius < width - 1) upperSrc += srcStrideX;
108 int radius, int width, int height,
115 radius = SkMin32(radius, width - 1);
116 const SkPMColor* upperSrc = src + radius * srcStrideX
489 int radius = random->nextRangeU(1, kMaxRadius); local
    [all...]
  /external/skia/src/effects/
SkMorphologyImageFilter.cpp 48 int radius, int width, int height,
55 radius = SkMin32(radius, width - 1);
56 const SkPMColor* upperSrc = src + radius * srcStrideX;
78 if (x >= radius) src += srcStrideX;
79 if (x + radius < width - 1) upperSrc += srcStrideX;
108 int radius, int width, int height,
115 radius = SkMin32(radius, width - 1);
116 const SkPMColor* upperSrc = src + radius * srcStrideX
489 int radius = random->nextRangeU(1, kMaxRadius); local
    [all...]
  /external/wpa_supplicant_8/src/ap/
ieee802_11_auth.c 9 * configured ACL from configuration files or an external RADIUS server.
10 * Results from external RADIUS queries are cached to allow faster
19 #include "radius/radius.h"
20 #include "radius/radius_client.h"
162 query->radius_id = radius_client_get_id(hapd->radius);
178 hapd->conf->radius->auth_server->shared_secret,
179 hapd->conf->radius->auth_server->shared_secret_len)) {
203 if (radius_client_send(hapd->radius, msg, RADIUS_AUTH, addr) < 0)
220 * @session_timeout: Buffer for returning session timeout (from RADIUS)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
styled_text_field_cell.mm 41 // inset backed out of the radius.
56 // radius.
150 const CGFloat radius = [self cornerRadius];
168 FillRectWithInset(roundedFlags, frame, halfLineWidth, radius,
178 FrameRectWithInset(roundedFlags, frame, 0.0, radius, lineWidth,
183 FillRectWithInset(roundedFlags, frame, lineWidth, radius,
193 [RectPathWithInset(roundedFlags, frame, lineWidth, radius) addClip];
198 radius - halfLineWidth, lineWidth, shadowShade);
212 bezelRect = NSInsetRect(bezelRect, radius - halfLineWidth, 0.0);
220 FrameRectWithInset(roundedFlags, frame, 0.0, radius, lineWidth * 2, color)
    [all...]
  /frameworks/base/libs/hwui/
TextDropShadowCache.h 36 ShadowText(): len(0), radius(0.0f), textSize(0.0f), typeface(NULL),
41 ShadowText(SkPaint* paint, float radius, uint32_t len, const char* srcText,
43 len(len), radius(radius), positions(positions) {
86 float radius; member in struct:android::uirenderer::ShadowText
139 int numGlyphs, float radius, const float* positions);
  /cts/suite/cts/deviceTests/browserbench/assets/octane/css/
docs.css 79 -webkit-border-radius: 6px;
80 -moz-border-radius: 6px;
81 border-radius: 6px;
132 -webkit-border-radius: 4px;
133 -moz-border-radius: 4px;
134 border-radius: 4px;
145 -webkit-border-radius: 0;
146 -moz-border-radius: 0;
147 border-radius: 0;
168 -webkit-border-radius: 4px 0 0 4px
    [all...]
  /external/chromium_org/chrome/browser/resources/user_manager/
user_manager.css 12 border-radius: 2px;
27 border-top-left-radius: 2px;
28 border-top-right-radius: 2px;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
cmdevtools.css 138 border-radius: 3px;
171 border-radius: 3px;
176 border-top-left-radius: 2px;
177 border-bottom-left-radius: 2px;
184 border-top-right-radius: 2px;
185 border-bottom-right-radius: 2px;
191 border-radius: 1px;
195 border-top-left-radius: 1px;
196 border-bottom-left-radius: 1px;
200 border-top-right-radius: 1px
    [all...]
  /external/ppp/pppd/plugins/
Makefile.linux 12 SUBDIRS := rp-pppoe pppoatm radius
13 # Uncomment the next line to include the radius authentication plugin
14 # SUBDIRS += radius
  /external/skia/gm/
filltypes.cpp 21 const SkScalar radius = SkIntToScalar(45); local
22 fPath.addCircle(SkIntToScalar(50), SkIntToScalar(50), radius);
23 fPath.addCircle(SkIntToScalar(100), SkIntToScalar(100), radius);
  /external/skia/tests/
ShaderImageFilterTest.cpp 34 SkScalar radius = SkIntToScalar(5); local
39 center, radius, colors, pos, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode);
50 center, radius, colors, pos, SK_ARRAY_COUNT(colors), SkShader::kClamp_TileMode);
  /frameworks/base/core/res/res/drawable/
progress_horizontal.xml 21 <corners android:radius="5dip" />
35 <corners android:radius="5dip" />
50 <corners android:radius="5dip" />
  /frameworks/base/docs/html/distribute/googleplay/spotlight/
index.jd 19 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
20 -moz-border-radius: 5px;
21 border-radius: 5px height:78px;
48 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
49 -moz-border-radius: 5px;
50 border-radius: 5px height:78px;
77 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px;
78 -moz-border-radius: 5px;
79 border-radius: 5px height:78px;
106 <img alt="" class="screenshot thumbnail" style="-webkit-border-radius: 5px
    [all...]
  /packages/apps/MusicFX/res/drawable/
progress_vertical.xml 21 <corners android:radius="5dip" />
35 <corners android:radius="5dip" />
52 <corners android:radius="5dip" />
  /external/ceres-solver/internal/ceres/
levenberg_marquardt_strategy_test.cc 94 EXPECT_EQ(lms.Radius(), options.initial_radius);
96 EXPECT_EQ(lms.Radius(), 1.0);
98 EXPECT_EQ(lms.Radius(), 0.25);
100 EXPECT_EQ(lms.Radius(), 0.25 * 3.0);
102 EXPECT_EQ(lms.Radius(), 0.25 * 3.0 * 3.0);
104 EXPECT_EQ(lms.Radius(), 0.25 * 3.0 * 3.0 / 1.125);
106 EXPECT_EQ(lms.Radius(), 0.25 * 3.0 * 3.0 / 1.125 * 3.0);
108 EXPECT_EQ(lms.Radius(), 0.25 * 3.0 * 3.0 / 1.125 * 3.0 * 3.0);
110 EXPECT_EQ(lms.Radius(), options.max_radius);
  /external/chromium/chrome/browser/resources/ntp4/
most_visited_page.css 56 border-top-left-radius: 5px;
57 border-top-right-radius: 5px;
158 border-radius: 5px;
170 border-radius: 5px;
177 border-top-left-radius 0, border-top-right-radius 0, box-shadow .15s;
190 border-top-left-radius: 0;
191 border-top-right-radius: 0;
196 /* Make the corner radius transitions match the edit bar's slide. */
  /external/chromium_org/chrome/android/java/res/drawable/
infobar_close_button_focused.xml 12 <corners android:radius="1dp" />
  /external/chromium_org/chrome/browser/resources/options/
certificate_tree.css 8 border-radius: 3px;

Completed in 1612 milliseconds

1 2 3 45 6 7 8 91011>>