Home
last modified time | relevance | path

Searched refs:isFixedSize (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSImageGeneratorValue.cpp126 bool CSSImageGeneratorValue::isFixedSize() const in isFixedSize() function in WebCore::CSSImageGeneratorValue
130 return toCSSCanvasValue(this)->isFixedSize(); in isFixedSize()
132 return toCSSCrossfadeValue(this)->isFixedSize(); in isFixedSize()
134 return toCSSLinearGradientValue(this)->isFixedSize(); in isFixedSize()
136 return toCSSRadialGradientValue(this)->isFixedSize(); in isFixedSize()
DCSSImageGeneratorValue.h62 bool isFixedSize() const;
DCSSCanvasValue.h44 bool isFixedSize() const { return true; } in isFixedSize() function
DCSSCrossfadeValue.h56 bool isFixedSize() const { return true; } in isFixedSize() function
DCSSGradientValue.h82 bool isFixedSize() const { return false; } in isFixedSize() function
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DStyleGeneratedImage.cpp35 , m_fixedSize(m_imageGeneratorValue->isFixedSize()) in StyleGeneratedImage()