HomeSort by relevance Sort by last modified time
    Searched full:margins (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/skia/src/utils/
SkNinePatch.cpp 230 const SkBitmap& bitmap, const SkIRect& margins,
233 0, margins.fLeft, bitmap.width() - margins.fRight, bitmap.width()
236 0, margins.fTop, bitmap.height() - margins.fBottom, bitmap.height()
239 dst.fLeft, dst.fLeft + SkIntToScalar(margins.fLeft),
240 dst.fRight - SkIntToScalar(margins.fRight), dst.fRight
243 dst.fTop, dst.fTop + SkIntToScalar(margins.fTop),
244 dst.fBottom - SkIntToScalar(margins.fBottom), dst.fBottom
265 const SkBitmap& bitmap, const SkIRect& margins,
    [all...]
  /external/skia/include/utils/
SkNinePatch.h 30 const SkBitmap& bitmap, const SkIRect& margins,
  /external/webkit/WebCore/platform/chromium/
ThemeChromiumMac.mm 279 static IntRect inflateRect(const IntRect& zoomedRect, const IntSize& zoomedSize, const int* margins, float zoomFactor)
283 int widthDelta = zoomedRect.width() - (zoomedSize.width() + margins[leftMargin] * zoomFactor + margins[rightMargin] * zoomFactor);
284 int heightDelta = zoomedRect.height() - (zoomedSize.height() + margins[topMargin] * zoomFactor + margins[bottomMargin] * zoomFactor);
287 result.setX(result.x() - margins[leftMargin] * zoomFactor);
291 result.setY(result.y() - margins[topMargin] * zoomFactor);
307 static const int margins[3][4] =
313 return margins[controlSize];
391 static const int margins[3][4]
    [all...]
  /external/webkit/WebCore/platform/mac/
ThemeMac.mm 129 static IntRect inflateRect(const IntRect& zoomedRect, const IntSize& zoomedSize, const int* margins, float zoomFactor)
133 int widthDelta = zoomedRect.width() - (zoomedSize.width() + margins[leftMargin] * zoomFactor + margins[rightMargin] * zoomFactor);
134 int heightDelta = zoomedRect.height() - (zoomedSize.height() + margins[topMargin] * zoomFactor + margins[bottomMargin] * zoomFactor);
137 result.setX(result.x() - margins[leftMargin] * zoomFactor);
141 result.setY(result.y() - margins[topMargin] * zoomFactor);
157 static const int margins[3][4] =
163 return margins[controlSize];
238 static const int margins[3][4]
    [all...]
ScrollViewMac.mm 67 // Suppress the resetting of drag margins since we know we can't affect them.
  /external/webkit/WebCore/css/
CSSQuirkPrimitiveValue.h 28 // This value is used to handle quirky margins in reflow roots (body, td, and th) like WinIE.
quirks.css 24 /* Give floated images margins of 3px */
  /external/webkit/WebCore/rendering/
RenderThemeSafari.cpp 295 IntRect RenderThemeSafari::inflateRect(const IntRect& r, const IntSize& size, const int* margins) const
299 int widthDelta = r.width() - (size.width() + margins[leftMargin] + margins[rightMargin]);
300 int heightDelta = r.height() - (size.height() + margins[topMargin] + margins[bottomMargin]);
303 result.setX(result.x() - margins[leftMargin]);
307 result.setY(result.y() - margins[topMargin]);
432 static const int margins[3][4] = local
438 return margins[controlSize];
471 static const int margins[3][4] local
556 static const int margins[3][4] = local
650 static const int margins[3][4] = local
    [all...]
RenderScrollbarPart.cpp 95 // Buttons and track pieces can all have margins along the axis of the scrollbar.
108 // Buttons and track pieces can all have margins along the axis of the scrollbar.
RenderBlock.h 424 // Collapsing flags for whether we can collapse our margins with our children's margins.
430 // margins in our container. Table cells and the body are the common examples. We
434 // This flag tracks whether we are still looking at child margins that can all collapse together at the beginning of a block.
440 // This flag is set when we know we're examining bottom margins and we know we're at the bottom of the block.
443 // These variables are used to detect quirky margins that we need to collapse away (in table cells
449 // These flags track the previous maximal positive and negative margins.
RenderBlock.cpp 94 // Whether or not we can collapse our own margins with our children. We don't do this
103 // margins with our children's margins. To do otherwise would be to risk odd visual
585 // (e) have specified that one of our margins can't collapse using a CSS extension
718 // our current maximal positive and negative margins. These values are used when we
725 // Start out by setting our margin values to our current margins. Table cells have
726 // no margins, so we don't fill in the values for table cells.
4140 int margins = 0; local
    [all...]
RenderFlexibleBox.cpp 129 // Auto and percentage margins simply become 0 when computing min/max width.
130 // Fixed margins can be added in as is.
153 // Auto/percentage margins simply become 0 when computing min/max width.
154 // Fixed margins can be added in as is.
271 // of 0. The CSS spec states that zero-height blocks collapse their margins
377 // Compute the child's vertical margins.
802 // Compute the child's vertical margins.
    [all...]
RenderBox.h 142 // The following five functions are used to implement collapsing margins.
143 // All objects know their maximal positive and negative margins. The
187 // right margins (so that they can remain centered after being
RenderBox.cpp 601 // its margins.
1552 int margins = collapsedMarginTop() + collapsedMarginBottom(); local
    [all...]
RenderInline.h 105 // Just ignore top/bottom margins on RenderInlines.
RenderThemeChromiumMac.h 141 IntRect inflateRect(const IntRect&, const IntSize&, const int* margins, float zoomLevel = 1.0f) const;
RenderThemeMac.h 144 IntRect inflateRect(const IntRect&, const IntSize&, const int* margins, float zoomLevel = 1.0f) const;
RenderThemeSafari.h 145 IntRect inflateRect(const IntRect&, const IntSize&, const int* margins) const;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ExplodedRenderingHelper.java 159 // margins in both dimensions than not at all.
246 // compute total horizontal margins
268 // compute total horizontal margins
  /external/genext2fs/
genext2fs.8 12 .\" .ad b justify to both left and right margins
  /external/jpeg/
transupp.h 59 * pad margins --- perhaps permanently, since encoders & decoders may not
  /external/webkit/WebCore/page/
PrintContext.cpp 72 outPageHeight = pageHeight; // this is the height of the page adjusted by margins
  /external/webkit/WebCore/page/wince/
FrameWince.cpp 90 outPageHeight = (int) pageHeight; // this is the height of the page adjusted by margins
  /external/webkit/WebKit/mac/WebInspector/
WebNodeHighlight.mm 154 // need updated, since the highlight can be larger than the element to show margins.
  /frameworks/base/awt/org/apache/harmony/awt/wtk/
NativeWindow.java 85 * reported by system event. Insets are margins around client area

Completed in 488 milliseconds

1 2 3 4 5