Searched refs:borderSlices (Results 1 - 9 of 9) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DNinePieceImage.cpp42 NinePieceImage::NinePieceImage(PassRefPtr<StyleImage> image, LengthBox imageSlices, bool fill, LengthBox borderSlices, LengthBox outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule) argument
47 m_data.access()->borderSlices = borderSlices;
60 , borderSlices(Length(1, Relative), Length(1, Relative), Length(1, Relative), Length(1, Relative))
72 , borderSlices(other.borderSlices)
82 && borderSlices == other.borderSlices
H A DNinePieceImage.h51 LengthBox borderSlices; member in class:WebCore::NinePieceImageData
62 NinePieceImage(PassRefPtr<StyleImage>, LengthBox imageSlices, bool fill, LengthBox borderSlices, LengthBox outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule);
77 const LengthBox& borderSlices() const { return m_data->borderSlices; } function in class:WebCore::NinePieceImage
78 void setBorderSlices(const LengthBox& slices) { m_data.access()->borderSlices = slices; }
97 m_data.access()->borderSlices = other.m_data->borderSlices;
115 m_data.access()->borderSlices = LengthBox();
H A DRenderStyle.cpp1738 if (surround->border.m_image.borderSlices() == slices)
H A DRenderStyle.h508 LengthBox borderImageWidth() const { return surround->border.image().borderSlices(); }
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSToStyleMap.cpp554 if (image.borderSlices().top().isFixed())
555 style()->setBorderTopWidth(image.borderSlices().top().value());
556 if (image.borderSlices().right().isFixed())
557 style()->setBorderRightWidth(image.borderSlices().right().value());
558 if (image.borderSlices().bottom().isFixed())
559 style()->setBorderBottomWidth(image.borderSlices().bottom().value());
560 if (image.borderSlices().left().isFixed())
561 style()->setBorderLeftWidth(image.borderSlices().left().value());
H A DCSSComputedStyleDeclaration.cpp579 RefPtr<CSSValue> borderSlices = valueForNinePieceImageQuad(image.borderSlices()); local
587 return createBorderImageValue(imageValue.release(), imageSlices.release(), borderSlices.release(), outset.release(), repeat.release());
2495 return valueForNinePieceImageQuad(style->borderImage().borderSlices());
2505 return valueForNinePieceImageQuad(style->maskBoxImage().borderSlices());
H A DStyleResolver.cpp4126 reflection->setMask(NinePieceImage(loadedImage.release(), maskImage.imageSlices(), maskImage.fill(), maskImage.borderSlices(), maskImage.outset(), maskImage.horizontalRule(), maskImage.verticalRule()));
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DCSSPropertyAnimation.cpp276 if (from.imageSlices() != to.imageSlices() || from.borderSlices() != to.borderSlices() || from.outset() != to.outset() || from.fill() != to.fill() || from.horizontalRule() != to.horizontalRule() || from.verticalRule() != to.verticalRule())
284 return NinePieceImage(newContentImage, from.imageSlices(), from.fill(), from.borderSlices(), from.outset(), from.horizontalRule(), from.verticalRule());
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderBoxModelObject.cpp1372 int topWidth = computeBorderImageSide(ninePieceImage.borderSlices().top(), style->borderTopWidth(), topSlice, borderImageRect.height(), renderView);
1373 int rightWidth = computeBorderImageSide(ninePieceImage.borderSlices().right(), style->borderRightWidth(), rightSlice, borderImageRect.width(), renderView);
1374 int bottomWidth = computeBorderImageSide(ninePieceImage.borderSlices().bottom(), style->borderBottomWidth(), bottomSlice, borderImageRect.height(), renderView);
1375 int leftWidth = computeBorderImageSide(ninePieceImage.borderSlices().left(), style->borderLeftWidth(), leftSlice, borderImageRect.width(), renderView);

Completed in 174 milliseconds