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

  /external/webkit/Source/WebCore/svg/graphics/
SVGImage.h 53 virtual bool hasRelativeWidth() const;
SVGImage.cpp 156 bool SVGImage::hasRelativeWidth() const
  /external/webkit/Source/WebCore/platform/graphics/
GeneratedImage.h 50 virtual bool hasRelativeWidth() const { return true; }
Image.h 101 virtual bool hasRelativeWidth() const { return false; }
Image.cpp 116 if (hasRelativeWidth())
  /external/webkit/Source/WebCore/loader/cache/
CachedImage.cpp 158 return m_image->hasRelativeWidth();
183 int width = m_image->size().width() * (m_image->hasRelativeWidth() ? 1.0f : multiplier);
198 if (multiplier == 1.0f || (!m_image->hasRelativeWidth() && !m_image->hasRelativeHeight()))
201 float widthMultiplier = (m_image->hasRelativeWidth() ? 1.0f : multiplier);

Completed in 1089 milliseconds