Lines Matching refs:Insets
15 #include "ui/gfx/insets.h"
101 // Constructs an ImagePainter with the specified image and insets.
102 ImagePainter(const gfx::ImageSkia& image, const gfx::Insets& insets);
140 const gfx::Insets& insets) {
141 DCHECK_GE(image.width(), insets.width());
142 DCHECK_GE(image.height(), insets.height());
146 { 0, insets.left(), image.width() - insets.right(), image.width() };
148 { 0, insets.top(), image.height() - insets.bottom(), image.height() };
268 const gfx::Insets& insets) {
269 return new ImagePainter(image, insets);