HomeSort by relevance Sort by last modified time
    Searched defs:inset (Results 1 - 25 of 34) sorted by null

1 2

  /external/skia/tests/
PaintTest.cpp 30 SkScalar inset = paint.getStrokeJoin() == SkPaint::kMiter_Join ? local
33 maxR.inset(-inset, -inset);
  /external/webkit/Source/WebCore/rendering/
RenderRubyText.cpp 74 // Inset the ruby text by half the inter-ideograph expansion amount, but no more than a full-width
76 float inset = (logicalWidth - maxPreferredLogicalWidth) / (expansionOpportunityCount + 1); local
78 inset = min<float>(2 * style()->fontSize(), inset);
80 logicalLeft += inset / 2;
81 logicalWidth -= inset;
RenderRubyBase.cpp 208 // Inset the ruby base by half the inter-ideograph expansion amount.
209 float inset = (logicalWidth - maxPreferredLogicalWidth) / (expansionOpportunityCount + 1); local
211 logicalLeft += inset / 2;
212 logicalWidth -= inset;
RenderTextControlMultiLine.cpp 136 int inset = borderLeft() + paddingLeft(); local
139 inset += innerTextRenderer->paddingLeft();
141 return inset;
146 int inset = borderRight() + paddingRight(); local
149 inset += innerTextRenderer->paddingRight();
151 return inset;
156 int inset = borderTop() + paddingTop(); local
159 inset += innerTextRenderer->paddingTop();
161 return inset;
RenderTextControlSingleLine.cpp 1115 int inset = borderLeft() + clientPaddingLeft(); local
1125 int inset = borderRight() + clientPaddingRight(); local
    [all...]
  /development/samples/BrowserPlugin/jni/navigation/
NavigationPlugin.cpp 46 static uint16_t rnd16(float x, int inset) {
47 int ix = (int)roundf(x) + inset;
55 const int inset = doAA ? -1 : 0; local
59 inval.left = rnd16(r.left, inset);
60 inval.top = rnd16(r.top, inset);
61 inval.right = rnd16(r.right, -inset);
62 inval.bottom = rnd16(r.bottom, -inset);
  /external/chromium/chrome/browser/ui/gtk/
theme_install_bubble_view_gtk.cc 167 int inset = kBubbleCornerRadius; local
168 inner_rect.Inset(inset, inset);
171 cairo_arc(cr, inner_rect.x(), inner_rect.y(), inset,
173 cairo_arc(cr, inner_rect.right(), inner_rect.y(), inset,
175 cairo_arc(cr, inner_rect.right(), inner_rect.bottom(), inset,
177 cairo_arc(cr, inner_rect.x(), inner_rect.bottom(), inset,
  /cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/
RoundRectShapeTest.java 88 RectF inset = new RectF(6, 6, 6, 6); local
90 RoundRectShape roundRectShape = new RoundRectShape(outerR, inset, innerR);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Regions.java 85 float inset = p.getStrokeWidth() * 0.5f; local
86 if (inset == 0) { // catch hairlines
87 inset = 0.5f;
89 c.drawRect(r.left + inset, r.top + inset,
90 r.right - inset, r.bottom - inset, p);
ShapeDrawable1.java 82 RectF inset = new RectF(6, 6, 6, 6); local
97 mDrawables[3] = new ShapeDrawable(new RoundRectShape(outerR, inset,
99 mDrawables[4] = new ShapeDrawable(new RoundRectShape(outerR, inset,
  /external/chromium/chrome/browser/chromeos/login/
rounded_rect_painter.cc 181 int inset = border_->corner_radius / 2 + border_->padding + shadow; local
182 insets->Set(inset - shadow / 3, inset, inset + shadow / 3, inset);
  /external/skia/include/core/
SkRect.h 140 /** Inset the rectangle by (dx,dy). If dx is positive, then the sides are moved inwards,
144 void inset(int32_t dx, int32_t dy) { function in struct:SkIRect
439 /** Inset the rectangle by (dx,dy). If dx is positive, then the sides are moved inwards,
443 void inset(SkScalar dx, SkScalar dy) {
  /frameworks/base/graphics/java/android/graphics/
RectF.java 234 * Inset the rectangle by (dx,dy). If dx is positive, then the sides are
242 public void inset(float dx, float dy) { method in class:RectF
Rect.java 284 * Inset the rectangle by (dx,dy). If dx is positive, then the sides are
292 public void inset(int dx, int dy) { method in class:Rect
  /development/samples/BrowserPlugin/jni/audio/
AudioPlugin.cpp 47 static uint16_t rnd16(float x, int inset) {
48 int ix = (int)roundf(x) + inset;
56 const int inset = doAA ? -1 : 0; local
60 inval.left = rnd16(r.left, inset);
61 inval.top = rnd16(r.top, inset);
62 inval.right = rnd16(r.right, -inset);
63 inval.bottom = rnd16(r.bottom, -inset);
  /development/samples/BrowserPlugin/jni/form/
FormPlugin.cpp 46 static uint16_t rnd16(float x, int inset) {
47 int ix = (int)roundf(x) + inset;
55 const int inset = doAA ? -1 : 0; local
59 inval.left = rnd16(r.left, inset);
60 inval.top = rnd16(r.top, inset);
61 inval.right = rnd16(r.right, -inset);
62 inval.bottom = rnd16(r.bottom, -inset);
  /external/skia/src/views/
SkListView.cpp 631 SkScalar inset = 0; local
633 inset += fPaint[kHiliteCell_Attr].getStrokeWidth() / 2;
635 inset += SK_Scalar1;
636 r.inset(-inset, -inset);
  /packages/apps/Browser/src/com/android/browser/
BookmarkUtils.java 172 rect.inset(1, 1);
216 // rectangle but inset by the padding
218 r.inset(padding, padding);
  /packages/apps/Phone/src/com/android/phone/
CallCard.java 171 ImageView inset = (ImageView) findViewById(R.id.insetPhoto); local
172 mPhoto.setInsetImageView(inset);
    [all...]
  /external/skia/samplecode/
SampleApp.cpp 536 SkScalar inset = SkIntToScalar(-2); local
537 bounds.inset(inset, inset);
    [all...]
  /external/skia/src/core/
SkCanvas.cpp 1142 int inset = (kAA_EdgeType == et); local
    [all...]
SkDraw.cpp 508 SkScalar inset = paint.getStrokeWidth(); local
511 bounds.inset(-inset, -inset);
750 ir.inset(-1, -1);
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/12/
android.jar 

Completed in 2398 milliseconds

1 2