Home | History | Annotate | Download | only in rendering

Lines Matching refs:hasRadius

97     bool hasRadius() const { return m_hasRadius; }
98 void setHasRadius(bool hasRadius) { m_hasRadius = hasRadius; }
100 bool operator==(const ClipRect& other) const { return rect() == other.rect() && hasRadius() == other.hasRadius(); }
101 bool operator!=(const ClipRect& other) const { return rect() != other.rect() || hasRadius() != other.hasRadius(); }
108 if (other.hasRadius())