Searched defs:outset (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSBorderImage.cpp26 PassRefPtrWillBeRawPtr<CSSValue> borderSlice, PassRefPtrWillBeRawPtr<CSSValue> outset, PassRefPtrWillBeRawPtr<CSSValue> repeat)
32 if (borderSlice || outset) {
40 if (outset)
41 listSlash->append(outset);
25 createBorderImageValue(PassRefPtrWillBeRawPtr<CSSValue> image, PassRefPtrWillBeRawPtr<CSSValue> imageSlice, PassRefPtrWillBeRawPtr<CSSValue> borderSlice, PassRefPtrWillBeRawPtr<CSSValue> outset, PassRefPtrWillBeRawPtr<CSSValue> repeat) argument
H A DCSSComputedStyleDeclaration.cpp531 // Create the border outset.
532 RefPtrWillBeRawPtr<CSSValue> outset = valueForNinePieceImageQuad(image.outset(), style); local
537 return createBorderImageValue(imageValue.release(), imageSlices.release(), borderSlices.release(), outset.release(), repeat.release());
2462 return valueForNinePieceImageQuad(style->borderImage().outset(), *style);
2472 return valueForNinePieceImageQuad(style->maskBoxImage().outset(), *style);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DNinePieceImage.cpp44 NinePieceImage::NinePieceImage(PassRefPtr<StyleImage> image, LengthBox imageSlices, bool fill, const BorderImageLengthBox& borderSlices, const BorderImageLengthBox& outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule) argument
50 m_data.access()->outset = outset;
63 , outset(Length(0, Fixed), Length(0, Fixed), Length(0, Fixed), Length(0, Fixed))
75 , outset(other.outset)
85 && outset == other.outset
H A DNinePieceImage.h53 BorderImageLengthBox outset; member in class:blink::NinePieceImageData
64 const BorderImageLengthBox& outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule);
82 const BorderImageLengthBox& outset() const { return m_data->outset; } function in class:blink::NinePieceImage
83 void setOutset(const BorderImageLengthBox& outset) { m_data.access()->outset = outset; } argument
104 m_data.access()->outset = other.m_data->outset;
H A DRenderStyle.cpp1633 return LayoutBoxExtent(NinePieceImage::computeOutset(image.outset().top(), borderTopWidth()),
1634 NinePieceImage::computeOutset(image.outset().right(), borderRightWidth()),
1635 NinePieceImage::computeOutset(image.outset().bottom(), borderBottomWidth()),
1636 NinePieceImage::computeOutset(image.outset().left(), borderLeftWidth()));
1660 void RenderStyle::setBorderImageOutset(const BorderImageLengthBox& outset) argument
1662 if (surround->border.m_image.outset() == outset)
1664 surround.access()->border.m_image.setOutset(outset);
H A DRenderStyle.h407 return borderImage().hasImage() && borderImage().outset().nonZero();
491 const BorderImageLengthBox& borderImageOutset() const { return surround->border.image().outset(); }
674 const BorderImageLengthBox& maskBoxImageOutset() const { return rareNonInheritedData->m_maskBoxImage.outset(); }
1183 void setMaskBoxImageOutset(const BorderImageLengthBox& outset) argument
1185 rareNonInheritedData.access()->m_maskBoxImage.setOutset(outset);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterOperations.cpp39 IntSize outset; local
41 outset.setWidth(3 * kernelSize.width() * 0.5f);
42 outset.setHeight(3 * kernelSize.height() * 0.5f);
44 return outset;
/external/chromium_org/chrome/browser/chromeos/ui/
H A Daccessibility_focus_ring_layer.cc31 int outset,
59 input_ring.points[i].x() + outset * delta0.y(),
60 input_ring.points[i].y() - outset * delta0.x());
63 input_ring.points[i].x() + ((i + 13) % 36 >= 18 ? outset : -outset),
64 input_ring.points[i].y() + ((i + 4) % 36 >= 18 ? outset : -outset));
30 MakePath(const AccessibilityFocusRing& input_ring, int outset, const gfx::Vector2d& offset) argument
/external/chromium_org/third_party/skia/include/core/
H A DSkRRect.h231 * Call outset on the bounds, and adjust the radii to reflect what happens
238 void outset(SkScalar dx, SkScalar dy, SkRRect* dst) const { function in class:SkRRect
241 void outset(SkScalar dx, SkScalar dy) { function in class:SkRRect
H A DSkRect.h214 void outset(int32_t dx, int32_t dy) { this->inset(-dx, -dy); } function in struct:SkIRect
647 void outset(SkScalar dx, SkScalar dy) { this->inset(-dx, -dy); }
/external/skia/include/core/
H A DSkRRect.h231 * Call outset on the bounds, and adjust the radii to reflect what happens
238 void outset(SkScalar dx, SkScalar dy, SkRRect* dst) const { function in class:SkRRect
241 void outset(SkScalar dx, SkScalar dy) { function in class:SkRRect
H A DSkRect.h214 void outset(int32_t dx, int32_t dy) { this->inset(-dx, -dy); } function in struct:SkIRect
649 void outset(SkScalar dx, SkScalar dy) { this->inset(-dx, -dy); }
/external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.cpp43 float outset = paint->getStrokeWidth() * 0.5f; local
44 bounds.outset(outset, outset);
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGpuDevice.cpp942 // This method outsets 'iRect' by 'outset' all around and then clamps its extents to
946 int outset,
949 iRect->outset(outset, outset);
953 offset->fX -= outset - leftClampDelta;
956 offset->fX -= outset;
961 offset->fY -= outset - topClampDelta;
964 offset->fY -= outset;
1007 innerTransformedRect.outset(COLOR_BLEED_TOLERANC
945 clamped_outset_with_offset(SkIRect* iRect, int outset, SkPoint* offset, const SkIRect& clamp) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DBlurTest.cpp29 static const int outset = 100; variable
128 iref.inset(-outset, -outset);
/external/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.cpp43 float outset = paint->getStrokeWidth() * 0.5f; local
44 bounds.outset(outset, outset);
/external/skia/src/gpu/
H A DSkGpuDevice.cpp973 // This method outsets 'iRect' by 'outset' all around and then clamps its extents to
977 int outset,
980 iRect->outset(outset, outset);
984 offset->fX -= outset - leftClampDelta;
987 offset->fX -= outset;
992 offset->fY -= outset - topClampDelta;
995 offset->fY -= outset;
1038 innerTransformedRect.outset(COLOR_BLEED_TOLERANC
976 clamped_outset_with_offset(SkIRect* iRect, int outset, SkPoint* offset, const SkIRect& clamp) argument
[all...]
/external/skia/tests/
H A DBlurTest.cpp29 static const int outset = 100; variable
128 iref.inset(-outset, -outset);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGraphicsContext.cpp672 const int outset = focusRingOutset(offset); local
675 r.inset(-outset, -outset);
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp5666 void commitBorderOutset(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> outset) argument
5668 m_outset = outset;

Completed in 381 milliseconds