HomeSort by relevance Sort by last modified time
    Searched defs:repeatY (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Pattern.h 47 static PassRefPtr<Pattern> create(PassRefPtr<Image> tileImage, bool repeatX, bool repeatY)
49 return adoptRef(new Pattern(tileImage, repeatX, repeatY));
59 bool repeatY() const { return m_repeatY; }
62 Pattern(PassRefPtr<Image>, bool repeatX, bool repeatY);
  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySerializer.cpp 709 const CSSPrimitiveValue& repeatY = repeatYCSSValue.isInitialValue() ? *initialRepeatValue : toCSSPrimitiveValue(repeatYCSSValue);
711 CSSValueID repeatYValueId = repeatY.getValueID();
721 builder.append(repeatY.cssText());
728 RefPtrWillBeRawPtr<CSSValue> repeatY = m_propertySet.getPropertyCSSValue(CSSPropertyBackgroundRepeatY);
729 if (!repeatX || !repeatY)
733 if (repeatX->cssValueType() == repeatY->cssValueType()
749 if (repeatY->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE) {
751 repeatYList->append(repeatY);
752 } else if (repeatY->cssValueType() == CSSValue::CSS_VALUE_LIST) {
753 repeatYList = toCSSValueList(repeatY.get())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
FillLayer.h 77 EFillRepeat repeatY() const { return static_cast<EFillRepeat>(m_repeatY); }
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp     [all...]

Completed in 206 milliseconds