Home
last modified time | relevance | path

Searched refs:borderImage (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/paint/
DInlineFlowBoxPainter.cpp216 const NinePieceImage& borderImage = m_inlineFlowBox.renderer().style()->borderImage(); in paintBoxDecorationBackground() local
217 StyleImage* borderImageSource = borderImage.image(); in paintBoxDecorationBackground()
246 … LayoutRect clipRect = clipRectForNinePieceImageStrip(&m_inlineFlowBox, borderImage, paintRect); in paintBoxDecorationBackground()
DBoxPainter.cpp1365 if (paintNinePieceImage(obj, graphicsContext, rect, style, style->borderImage())) in paintBorder()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DCSSToStyleMap.cpp443 CSSValueList* borderImage = toCSSValueList(value); in mapNinePieceImage() local
454 for (unsigned i = 0 ; i < borderImage->length() ; ++i) { in mapNinePieceImage()
455 CSSValue* current = borderImage->item(i); in mapNinePieceImage()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderObject.cpp865 StyleImage* borderImage = style()->borderImage().image(); in canRenderBorderImage() local
866 …return borderImage && borderImage->canRender(*this, style()->effectiveZoom()) && borderImage->isLo… in canRenderBorderImage()
1721 updateImage(oldStyle ? oldStyle->borderImage().image() : 0, m_style->borderImage().image()); in setStyle()
2529 if (StyleImage* borderImage = m_style->borderImage().image()) in postDestroy() local
2530 borderImage->removeClient(this); in postDestroy()
DRenderBox.cpp1261 if ((style()->borderImage().image() && style()->borderImage().image()->data() == image) || in imageChanged()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSComputedStyleDeclaration.cpp2460 return valueForNinePieceImage(style->borderImage(), *style); in getPropertyCSSValue()
2462 return valueForNinePieceImageQuad(style->borderImage().outset(), *style); in getPropertyCSSValue()
2464 return valueForNinePieceImageRepeat(style->borderImage()); in getPropertyCSSValue()
2466 return valueForNinePieceImageSlice(style->borderImage()); in getPropertyCSSValue()
2468 return valueForNinePieceImageQuad(style->borderImage().borderSlices(), *style); in getPropertyCSSValue()
2665 return valueForNinePieceImage(style->borderImage(), *style); in getPropertyCSSValue()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.h407 return borderImage().hasImage() && borderImage().outset().nonZero(); in hasBorderImageOutsets()
411 return imageOutsets(borderImage()); in borderImageOutsets()
487 const NinePieceImage& borderImage() const { return surround->border.image(); } in borderImage() function
DRenderStyle.cpp1705 if (borderImage().image()) in borderObscuresBackground()
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/
DStyleBuilderFunctions.cpp.tmpl187 {% set getter = 'maskBoxImage' if is_mask_box else 'borderImage' %}