/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_bubble_controller.mm | 14 // Border inset for error label. 29 inset:NSMakeSize(kLabelInset, kLabelInset)]; 34 inset:(NSSize)inset { 44 inset_ = inset; 54 NSRect labelFrame = NSMakeRect(inset.width, inset.height, 0, 0); 64 windowFrame = NSInsetRect(windowFrame, -inset.width, -inset.height);
|
autofill_bubble_controller.h | 17 NSSize inset_; // Amount the label is inset from the window. 27 // text content by |inset|. 30 inset:(NSSize)inset;
|
/external/chromium/chrome/browser/ui/cocoa/ |
styled_text_field_cell.mm | 20 const CGFloat inset, 22 NSRect insetFrame = NSInsetRect(frame, inset, inset); 25 CGFloat leftRadius = outerRadius - inset; 41 // inset backed out of the radius. 44 const CGFloat inset, 48 RectPathWithInset(roundedFlags, frame, inset, outerRadius); 55 // greater than 0.0 uses rounded corners, with inset backed out of the 59 const CGFloat inset, 63 const CGFloat finalInset = inset + (lineWidth / 2.0) [all...] |
/external/chromium_org/chrome/browser/resources/gaia_auth/ |
keyboard_ui.css | 12 box-shadow: inset 0 1px 2px rgba(0,0,0,0.3), 19 box-shadow: inset 0 0 0 1px #fff,
|
offline.css | 69 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 72 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 79 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); 81 box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); 149 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 153 box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); 178 -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); 179 box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); 185 -webkit-box-shadow: inset 0 0 0 1px #fff; 186 box-shadow: inset 0 0 0 1px #fff [all...] |
/external/doclava/res/assets/templates/ |
todo.cs | 17 border-style: inset inset inset inset; 24 border-style: inset inset inset inset;
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
onclick_in_noncontent.html | 11 <table style="width:100px;height:100px;border:inset">
|
svg-modify-deleted-selection.svg | 4 border-top-style: inset
|
/external/chromium_org/chrome/browser/chromeos/ui/ |
focus_ring_layer.cc | 59 int inset = -(kShadowRadius + 2); local 60 layer_bounds.Inset(inset, inset, inset, inset); 80 view_bounds.Inset(2, 2, 2, 2); 88 view_bounds.Inset(1, 1, 3, 3); 91 view_bounds.Inset(1, 1, 3, 3); 95 view_bounds.Inset(2, 1, 2, 2) [all...] |
/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);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderRubyText.cpp | 76 // Inset the ruby text by half the inter-ideograph expansion amount, but no more than a full-width 78 float inset = (logicalWidth - maxPreferredLogicalWidth) / (expansionOpportunityCount + 1); local 80 inset = min<float>(2 * style()->fontSize(), inset); 82 logicalLeft += inset / 2; 83 logicalWidth -= inset;
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
RoundRectShape.java | 25 * Creates a rounded-corner rectangle. Optionally, an inset (rounded) rectangle 48 * @param inset A RectF that specifies the distance from the inner 56 * If inset parameter is null, this parameter is ignored. 58 public RoundRectShape(float[] outerRadii, RectF inset, 67 mInset = inset; 70 if (inset != null) {
|
/packages/apps/VideoEditor/src/com/android/videoeditor/util/ |
ImageUtils.java | 304 final int INSET = width / 72; 305 final int startHeight = (height / 3) + INSET; 307 background.setBounds(INSET, startHeight, width - INSET, 308 ((2 * height) / 3) - INSET); 316 final int maxWidth = width - (2 * INSET) - (2 * titleFontSize); 321 canvas.drawText(title, (width - (2 * INSET) - p.measureText(title)) / 2, 328 canvas.drawText(subTitle, (width - (2 * INSET) - p.measureText(subTitle)) / 2, 347 final int INSET = width / 72; 348 final int startHeight = ((2 * height) / 3) + INSET; [all...] |
/external/chromium_org/chrome/browser/ui/views/message_center/ |
message_center_frame_view.cc | 32 client_bounds.Inset(GetInsets()); 39 window_bounds.Inset(GetInsets()); 45 frame_bounds.Inset(GetInsets());
|
/external/skia/gm/ |
pathinterior.cpp | 15 static SkRect inset(const SkRect& r) { function 17 rect.inset(r.width() / 8, r.height() / 8); 78 SkRect r = insetFirst ? inset(rect) : rect; 84 r = insetFirst ? rect : inset(rect);
|
lerpmode.cpp | 25 r.inset(20, 0); 30 r.inset(0, 20);
|
strokes.cpp | 140 static SkRect inset(const SkRect& r) { function 142 rr.inset(r.width()/10, r.height()/10); 149 path->addRect(inset(bounds), SkPath::kCW_Direction); 155 path->addRect(inset(bounds), SkPath::kCCW_Direction); 161 path->addOval(inset(bounds), SkPath::kCW_Direction); 167 path->addOval(inset(bounds), SkPath::kCCW_Direction); 174 r.inset(bounds.width() / 10, -bounds.height() / 10); 182 r.inset(bounds.width() / 10, -bounds.height() / 10);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
drawable1-expected-completion50.txt | 6 <inset />
|
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
instant_opt_in_view.mm | 18 // How far from the sides to inset the horizontal line. 40 // Draw a horizontal line 2 px down from the top of the view, inset at the
|
/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,
|
/external/chromium_org/cc/output/ |
filter_operation.h | 125 static FilterOperation CreateZoomFilter(float amount, int inset) { 126 return FilterOperation(ZOOM, amount, inset); 178 void set_zoom_inset(int inset) { 180 zoom_inset_ = inset; 205 FilterOperation(FilterType type, float amount, int inset);
|
/external/llvm/lib/MC/ |
MCObjectWriter.cpp | 24 bool InSet) const { 42 InSet, 50 bool InSet,
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrAARectRenderer.cpp | 482 SkScalar inset = SkMinScalar(devRect.width(), SK_Scalar1); local 483 inset = SK_ScalarHalf * SkMinScalar(inset, devRect.height()); 495 set_inset_fan(fan1Pos, vsize, devRect, inset, inset); 513 // Now create the inset points and then outset the original 540 if (inset < SK_ScalarHalf) { 541 scale = SkScalarFloorToInt(512.0f * inset / (inset + SK_ScalarHalf)); 777 devInside.inset(rx, ry) 834 SkScalar inset = SkMinScalar(SK_Scalar1, devOutside.fRight - devInside.fRight); local 844 SkScalar inset = SK_ScalarHalf; local [all...] |
/external/skia/src/gpu/ |
GrAARectRenderer.cpp | 482 SkScalar inset = SkMinScalar(devRect.width(), SK_Scalar1); local 483 inset = SK_ScalarHalf * SkMinScalar(inset, devRect.height()); 495 set_inset_fan(fan1Pos, vsize, devRect, inset, inset); 513 // Now create the inset points and then outset the original 540 if (inset < SK_ScalarHalf) { 541 scale = SkScalarFloorToInt(512.0f * inset / (inset + SK_ScalarHalf)); 777 devInside.inset(rx, ry) 834 SkScalar inset = SkMinScalar(SK_Scalar1, devOutside.fRight - devInside.fRight); local 844 SkScalar inset = SK_ScalarHalf; local [all...] |
/cts/tests/res/drawable/ |
insetdrawable.xml | 18 <inset xmlns:android="http://schemas.android.com/apk/res/android"
|