HomeSort by relevance Sort by last modified time
    Searched refs:horizontalRule (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
NinePieceImage.cpp 42 NinePieceImage::NinePieceImage(PassRefPtr<StyleImage> image, LengthBox imageSlices, bool fill, LengthBox borderSlices, LengthBox outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule)
50 m_data.access()->horizontalRule = horizontalRule;
56 , horizontalRule(StretchImageRule)
68 , horizontalRule(other.horizontalRule)
84 && horizontalRule == other.horizontalRule
NinePieceImage.h 47 unsigned horizontalRule : 2; // ENinePieceImageRule
62 NinePieceImage(PassRefPtr<StyleImage>, LengthBox imageSlices, bool fill, LengthBox borderSlices, LengthBox outset, ENinePieceImageRule horizontalRule, ENinePieceImageRule verticalRule);
83 ENinePieceImageRule horizontalRule() const { return static_cast<ENinePieceImageRule>(m_data->horizontalRule); }
84 void setHorizontalRule(ENinePieceImageRule rule) { m_data.access()->horizontalRule = rule; }
107 m_data.access()->horizontalRule = other.m_data->horizontalRule;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToStyleMap.cpp 656 ENinePieceImageRule horizontalRule;
659 horizontalRule = StretchImageRule;
662 horizontalRule = RoundImageRule;
665 horizontalRule = SpaceImageRule;
668 horizontalRule = RepeatImageRule;
671 image.setHorizontalRule(horizontalRule);
CSSComputedStyleDeclaration.cpp 510 horizontalRepeat = cssValuePool().createIdentifierValue(valueForRepeatRule(image.horizontalRule()));
511 if (image.horizontalRule() == image.verticalRule())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResourceLoader.cpp 180 reflection->setMask(NinePieceImage(loadedImage.release(), maskImage.imageSlices(), maskImage.fill(), maskImage.borderSlices(), maskImage.outset(), maskImage.horizontalRule(), maskImage.verticalRule()));
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
CSSPropertyAnimation.cpp 295 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())
303 return NinePieceImage(newContentImage, from.imageSlices(), from.fill(), from.borderSlices(), from.outset(), from.horizontalRule(), from.verticalRule());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBoxModelObject.cpp     [all...]

Completed in 236 milliseconds