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

  /external/chromium_org/ui/gfx/image/
image_family_unittest.cc 99 EXPECT_FALSE(empty_family.GetBest(32, 32));
100 EXPECT_FALSE(empty_family.GetBest(0, 32));
101 EXPECT_FALSE(empty_family.GetBest(32, 0));
106 EXPECT_IMAGE_NON_NULL_AND_SIZE(image_family_.GetBest(0, 0), 16, 16);
107 // GetBest(0, N) or GetBest(N, 0) should be treated the same as GetBest(0, 0).
108 EXPECT_IMAGE_NON_NULL_AND_SIZE(image_family_.GetBest(0, 16), 16, 16);
109 EXPECT_IMAGE_NON_NULL_AND_SIZE(image_family_.GetBest(0, 64), 16, 16);
110 EXPECT_IMAGE_NON_NULL_AND_SIZE(image_family_.GetBest(16, 0), 16, 16)
    [all...]
image_family.h 128 const gfx::Image* GetBest(int width, int height) const;
137 const gfx::Image* GetBest(const gfx::Size& size) const;
image_family.cc 44 const gfx::Image* ImageFamily::GetBest(int width, int height) const {
106 const gfx::Image* ImageFamily::GetBest(const gfx::Size& size) const {
107 return GetBest(size.width(), size.height());
  /external/chromium_org/extensions/browser/
image_loader_unittest.cc 292 const gfx::Image* image = image_family_.GetBest(sizes[i], sizes[i]);
298 image_family_.GetBest(extension_misc::EXTENSION_ICON_BITTY,
  /external/chromium_org/chrome/browser/ui/views/
create_application_shortcut_view.cc 176 const gfx::Image* icon = image.GetBest(kIconPreviewSizePixels,
455 const gfx::Image* icon = shortcut_info_.favicon.GetBest(0, 0);
  /external/chromium_org/ui/gfx/
icon_util.cc 54 const gfx::Image* best = image_family.GetBest(size);

Completed in 291 milliseconds