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

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasPattern.cpp 35 void CanvasPattern::parseRepetitionType(const String& type, bool& repeatX, bool& repeatY, ExceptionState& exceptionState)
39 repeatY = true;
44 repeatY = false;
49 repeatY = false;
54 repeatY = true;
60 CanvasPattern::CanvasPattern(PassRefPtr<Image> image, bool repeatX, bool repeatY, bool originClean)
61 : m_pattern(Pattern::create(image, repeatX, repeatY))
CanvasPattern.h 42 static void parseRepetitionType(const String&, bool& repeatX, bool& repeatY, ExceptionState&);
44 static PassRefPtr<CanvasPattern> create(PassRefPtr<Image> image, bool repeatX, bool repeatY, bool originClean)
46 return adoptRef(new CanvasPattern(image, repeatX, repeatY, originClean));
54 CanvasPattern(PassRefPtr<Image>, bool repeatX, bool repeatY, bool originClean);
CanvasRenderingContext2D.cpp     [all...]
  /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);
Pattern.cpp 39 Pattern::Pattern(PassRefPtr<Image> image, bool repeatX, bool repeatY)
41 , m_repeatY(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...]
CSSComputedStyleDeclaration.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
FillLayer.h 77 EFillRepeat repeatY() const { return static_cast<EFillRepeat>(m_repeatY); }
RenderStyle.h 659 EFillRepeat backgroundRepeatY() const { return static_cast<EFillRepeat>(m_background->background().repeatY()); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObject.cpp 896 if (layer.repeatY() != RepeatFill && layer.repeatY() != NoRepeatFill)
    [all...]
RenderBoxModelObject.cpp     [all...]

Completed in 597 milliseconds