Lines Matching refs:Insets
20 // An integer version of gfx::Insets.
21 class GFX_EXPORT Insets : public InsetsBase<Insets, int> {
23 Insets();
24 Insets(int top, int left, int bottom, int right);
26 explicit Insets(const GtkBorder& border);
29 ~Insets();
31 Insets Scale(float scale) const {
35 Insets Scale(float x_scale, float y_scale) const {
36 return Insets(static_cast<int>(top() * y_scale),
42 // Returns a string representation of the insets.
47 extern template class InsetsBase<Insets, int>;