Home
last modified time | relevance | path

Searched refs:m_background (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebCore/rendering/style/
DStyleBackgroundData.cpp31 : m_background(BackgroundFillLayer) in StyleBackgroundData()
38 , m_background(o.m_background) in StyleBackgroundData()
46 return m_background == o.m_background && m_color == o.m_color && m_outline == o.m_outline; in operator ==()
DRenderStyle.h342 return background->m_background.hasImage(); in hasBackground()
344 bool hasBackgroundImage() const { return background->m_background.hasImage(); } in hasBackgroundImage()
345 bool hasFixedBackgroundImage() const { return background->m_background.hasFixedImage(); } in hasFixedBackgroundImage()
532 StyleImage* backgroundImage() const { return background->m_background.m_image.get(); } in backgroundImage()
533 … backgroundRepeatX() const { return static_cast<EFillRepeat>(background->m_background.m_repeatX); } in backgroundRepeatX()
534 … backgroundRepeatY() const { return static_cast<EFillRepeat>(background->m_background.m_repeatY); } in backgroundRepeatY()
535 …dComposite() const { return static_cast<CompositeOperator>(background->m_background.m_composite); } in backgroundComposite()
536 …dAttachment() const { return static_cast<EFillAttachment>(background->m_background.m_attachment); } in backgroundAttachment()
537 … EFillBox backgroundClip() const { return static_cast<EFillBox>(background->m_background.m_clip); } in backgroundClip()
538 …EFillBox backgroundOrigin() const { return static_cast<EFillBox>(background->m_background.m_origin… in backgroundOrigin()
[all …]
DStyleBackgroundData.h48 FillLayer m_background; variable