Home
last modified time | relevance | path

Searched refs:EFillRepeat (Results 1 – 25 of 30) sorted by relevance

12

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/style/
H A Dfill_layer.h77 EFillRepeat RepeatX() const { return static_cast<EFillRepeat>(repeat_x_); } in RepeatX()
78 EFillRepeat RepeatY() const { return static_cast<EFillRepeat>(repeat_y_); } in RepeatY()
154 void SetRepeatX(EFillRepeat r) { in SetRepeatX()
158 void SetRepeatY(EFillRepeat r) { in SetRepeatY()
259 static EFillRepeat InitialFillRepeatX(EFillLayerType) { in InitialFillRepeatX()
260 return EFillRepeat::kRepeatFill; in InitialFillRepeatX()
262 static EFillRepeat InitialFillRepeatY(EFillLayerType) { in InitialFillRepeatY()
263 return EFillRepeat::kRepeatFill; in InitialFillRepeatY()
H A Dfill_layer.cc410 return (static_cast<EFillRepeat>(repeat_x_) == EFillRepeat::kRepeatFill || in ImageTilesLayer()
411 static_cast<EFillRepeat>(repeat_x_) == EFillRepeat::kRoundFill) && in ImageTilesLayer()
412 (static_cast<EFillRepeat>(repeat_y_) == EFillRepeat::kRepeatFill || in ImageTilesLayer()
413 static_cast<EFillRepeat>(repeat_y_) == EFillRepeat::kRoundFill); in ImageTilesLayer()
H A Dcomputed_style_constants.h118 enum class EFillRepeat : unsigned { enum
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/rendering/style/
H A DFillLayer.h74 EFillRepeat repeatX() const { return static_cast<EFillRepeat>(m_repeatX); } in repeatX()
75 EFillRepeat repeatY() const { return static_cast<EFillRepeat>(m_repeatY); } in repeatY()
101 void setRepeatX(EFillRepeat r) { m_repeatX = r; m_repeatXSet = true; } in setRepeatX()
102 void setRepeatY(EFillRepeat r) { m_repeatY = r; m_repeatYSet = true; } in setRepeatY()
155 static EFillRepeat initialFillRepeatX(EFillLayerType) { return RepeatFill; } in initialFillRepeatX()
156 static EFillRepeat initialFillRepeatY(EFillLayerType) { return RepeatFill; } in initialFillRepeatY()
H A DRenderStyle.h567EFillRepeat backgroundRepeatX() const { return static_cast<EFillRepeat>(m_background->background()… in backgroundRepeatX()
568EFillRepeat backgroundRepeatY() const { return static_cast<EFillRepeat>(m_background->background()… in backgroundRepeatY()
581EFillRepeat maskRepeatX() const { return static_cast<EFillRepeat>(rareNonInheritedData->m_mask.rep… in maskRepeatX()
582EFillRepeat maskRepeatY() const { return static_cast<EFillRepeat>(rareNonInheritedData->m_mask.rep… in maskRepeatY()
H A DRenderStyleConstants.h145 enum EFillRepeat { enum
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/style/
H A Dfill_layer.h77 EFillRepeat RepeatX() const { return static_cast<EFillRepeat>(repeat_x_); } in RepeatX()
78 EFillRepeat RepeatY() const { return static_cast<EFillRepeat>(repeat_y_); } in RepeatY()
158 void SetRepeatX(EFillRepeat r) { in SetRepeatX()
162 void SetRepeatY(EFillRepeat r) { in SetRepeatY()
264 static EFillRepeat InitialFillRepeatX(EFillLayerType) { in InitialFillRepeatX()
265 return EFillRepeat::kRepeatFill; in InitialFillRepeatX()
267 static EFillRepeat InitialFillRepeatY(EFillLayerType) { in InitialFillRepeatY()
268 return EFillRepeat::kRepeatFill; in InitialFillRepeatY()
H A Dfill_layer.cc413 return (static_cast<EFillRepeat>(repeat_x_) == EFillRepeat::kRepeatFill || in ImageTilesLayer()
414 static_cast<EFillRepeat>(repeat_x_) == EFillRepeat::kRoundFill) && in ImageTilesLayer()
415 (static_cast<EFillRepeat>(repeat_y_) == EFillRepeat::kRepeatFill || in ImageTilesLayer()
416 static_cast<EFillRepeat>(repeat_y_) == EFillRepeat::kRoundFill); in ImageTilesLayer()
H A Dcomputed_style_constants.h113 enum class EFillRepeat : unsigned { enum
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/paint/
H A Dbackground_image_geometry.cc880 EFillRepeat background_repeat_x = fill_layer.RepeatX(); in Calculate()
881 EFillRepeat background_repeat_y = fill_layer.RepeatY(); in Calculate()
905 if (background_repeat_x == EFillRepeat::kRoundFill && in Calculate()
915 background_repeat_y != EFillRepeat::kRoundFill) { in Calculate()
930 if (background_repeat_y == EFillRepeat::kRoundFill && in Calculate()
940 background_repeat_x != EFillRepeat::kRoundFill) { in Calculate()
955 if (background_repeat_x == EFillRepeat::kRepeatFill) { in Calculate()
966 background_repeat_x = EFillRepeat::kNoRepeatFill; in Calculate()
968 if (background_repeat_x == EFillRepeat::kNoRepeatFill) { in Calculate()
985 if (background_repeat_y == EFillRepeat::kRepeatFill) { in Calculate()
[all …]
H A Dbox_paint_invalidator.cc37 if (layer.RepeatX() != EFillRepeat::kRepeatFill && in ShouldFullyInvalidateFillLayersOnWidthChange()
38 layer.RepeatX() != EFillRepeat::kNoRepeatFill) in ShouldFullyInvalidateFillLayersOnWidthChange()
79 if (layer.RepeatY() != EFillRepeat::kRepeatFill && in ShouldFullyInvalidateFillLayersOnHeightChange()
80 layer.RepeatY() != EFillRepeat::kNoRepeatFill) in ShouldFullyInvalidateFillLayersOnHeightChange()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/paint/
H A Dbackground_image_geometry.cc876 EFillRepeat background_repeat_x = fill_layer.RepeatX(); in Calculate()
877 EFillRepeat background_repeat_y = fill_layer.RepeatY(); in Calculate()
901 if (background_repeat_x == EFillRepeat::kRoundFill && in Calculate()
910 background_repeat_y != EFillRepeat::kRoundFill) { in Calculate()
924 if (background_repeat_y == EFillRepeat::kRoundFill && in Calculate()
932 background_repeat_x != EFillRepeat::kRoundFill) { in Calculate()
946 if (background_repeat_x == EFillRepeat::kRepeatFill) { in Calculate()
958 background_repeat_x = EFillRepeat::kNoRepeatFill; in Calculate()
960 if (background_repeat_x == EFillRepeat::kNoRepeatFill) { in Calculate()
977 if (background_repeat_y == EFillRepeat::kRepeatFill) { in Calculate()
[all …]
H A Dbox_paint_invalidator.cc37 if (layer.RepeatX() != EFillRepeat::kRepeatFill && in ShouldFullyInvalidateFillLayersOnWidthChange()
38 layer.RepeatX() != EFillRepeat::kNoRepeatFill) in ShouldFullyInvalidateFillLayersOnWidthChange()
79 if (layer.RepeatY() != EFillRepeat::kRepeatFill && in ShouldFullyInvalidateFillLayersOnHeightChange()
80 layer.RepeatY() != EFillRepeat::kNoRepeatFill) in ShouldFullyInvalidateFillLayersOnHeightChange()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/css/
H A Dcss_primitive_value_mappings.h392 inline CSSIdentifierValue::CSSIdentifierValue(EFillRepeat e) in CSSIdentifierValue()
395 case EFillRepeat::kRepeatFill: in CSSIdentifierValue()
398 case EFillRepeat::kNoRepeatFill: in CSSIdentifierValue()
401 case EFillRepeat::kRoundFill: in CSSIdentifierValue()
404 case EFillRepeat::kSpaceFill: in CSSIdentifierValue()
411 inline EFillRepeat CSSIdentifierValue::ConvertTo() const { in ConvertTo()
414 return EFillRepeat::kRepeatFill; in ConvertTo()
416 return EFillRepeat::kNoRepeatFill; in ConvertTo()
418 return EFillRepeat::kRoundFill; in ConvertTo()
420 return EFillRepeat::kSpaceFill; in ConvertTo()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/css/
H A Dcss_primitive_value_mappings.h392 inline CSSIdentifierValue::CSSIdentifierValue(EFillRepeat e) in CSSIdentifierValue()
395 case EFillRepeat::kRepeatFill: in CSSIdentifierValue()
398 case EFillRepeat::kNoRepeatFill: in CSSIdentifierValue()
401 case EFillRepeat::kRoundFill: in CSSIdentifierValue()
404 case EFillRepeat::kSpaceFill: in CSSIdentifierValue()
411 inline EFillRepeat CSSIdentifierValue::ConvertTo() const { in ConvertTo()
414 return EFillRepeat::kRepeatFill; in ConvertTo()
416 return EFillRepeat::kNoRepeatFill; in ConvertTo()
418 return EFillRepeat::kRoundFill; in ConvertTo()
420 return EFillRepeat::kSpaceFill; in ConvertTo()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/css/properties/
H A Dcomputed_style_utils.h58 static const CSSValue* ValueForFillRepeat(EFillRepeat x_repeat,
59 EFillRepeat y_repeat);
H A Dcomputed_style_utils.cc209 const CSSValue* ComputedStyleUtils::ValueForFillRepeat(EFillRepeat x_repeat, in ValueForFillRepeat()
210 EFillRepeat y_repeat) { in ValueForFillRepeat()
216 if (x_repeat == EFillRepeat::kRepeatFill && in ValueForFillRepeat()
217 y_repeat == EFillRepeat::kNoRepeatFill) in ValueForFillRepeat()
219 if (x_repeat == EFillRepeat::kNoRepeatFill && in ValueForFillRepeat()
220 y_repeat == EFillRepeat::kRepeatFill) in ValueForFillRepeat()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/css/properties/
H A Dcomputed_style_utils.h63 static const CSSValue* ValueForFillRepeat(EFillRepeat x_repeat,
64 EFillRepeat y_repeat);
H A Dcomputed_style_utils.cc219 const CSSValue* ComputedStyleUtils::ValueForFillRepeat(EFillRepeat x_repeat, in ValueForFillRepeat()
220 EFillRepeat y_repeat) { in ValueForFillRepeat()
226 if (x_repeat == EFillRepeat::kRepeatFill && in ValueForFillRepeat()
227 y_repeat == EFillRepeat::kNoRepeatFill) in ValueForFillRepeat()
229 if (x_repeat == EFillRepeat::kNoRepeatFill && in ValueForFillRepeat()
230 y_repeat == EFillRepeat::kRepeatFill) in ValueForFillRepeat()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/css/
H A DCSSStyleApplyProperty.cpp413 …setPropertyHandler(CSSPropertyBackgroundRepeatX, new ApplyPropertyFillLayer<EFillRepeat>(CSSProper… in CSSStyleApplyProperty()
415 …setPropertyHandler(CSSPropertyBackgroundRepeatY, new ApplyPropertyFillLayer<EFillRepeat>(CSSProper… in CSSStyleApplyProperty()
444 …setPropertyHandler(CSSPropertyWebkitMaskRepeatX, new ApplyPropertyFillLayer<EFillRepeat>(CSSProper… in CSSStyleApplyProperty()
446 …setPropertyHandler(CSSPropertyWebkitMaskRepeatY, new ApplyPropertyFillLayer<EFillRepeat>(CSSProper… in CSSStyleApplyProperty()
H A DCSSPrimitiveValueMappings.h445 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EFillRepeat e) in CSSPrimitiveValue()
465 template<> inline CSSPrimitiveValue::operator EFillRepeat() const in EFillRepeat() function
H A DCSSComputedStyleDeclaration.cpp722 static PassRefPtr<CSSValue> fillRepeatToCSSValue(EFillRepeat xRepeat, EFillRepeat yRepeat, CSSPrimi… in fillRepeatToCSSValue()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/css/resolver/
H A Dcss_to_style_map.cc163 layer->SetRepeatX(identifier_value->ConvertTo<EFillRepeat>()); in MapFillRepeatX()
178 layer->SetRepeatY(identifier_value->ConvertTo<EFillRepeat>()); in MapFillRepeatY()
H A Dstyle_resolver.cc2203 old_fill.SetRepeatX(EFillRepeat::kNoRepeatFill); in HasAuthorBackground()
2204 old_fill.SetRepeatY(EFillRepeat::kNoRepeatFill); in HasAuthorBackground()
2205 new_fill.SetRepeatX(EFillRepeat::kNoRepeatFill); in HasAuthorBackground()
2206 new_fill.SetRepeatY(EFillRepeat::kNoRepeatFill); in HasAuthorBackground()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/css/resolver/
H A Dcss_to_style_map.cc165 layer->SetRepeatX(identifier_value->ConvertTo<EFillRepeat>()); in MapFillRepeatX()
180 layer->SetRepeatY(identifier_value->ConvertTo<EFillRepeat>()); in MapFillRepeatY()

12