HomeSort by relevance Sort by last modified time
    Searched defs:png_bytes (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/ui/gfx/
icon_util_unittest.cc 129 const unsigned char* png_bytes = reinterpret_cast<const unsigned char*>( local
132 png_bytes, png_entry->dwBytesInRes);
icon_util.cc 95 // PNG format and stored in |png_bytes|. Images with width or height larger than
103 scoped_refptr<base::RefCountedMemory>* png_bytes) {
130 *png_bytes = image.As1xPNGBytes();
293 const unsigned char* png_bytes = local
295 gfx::Image image = gfx::Image::CreateFrom1xPNGBytes(png_bytes, png_size);
461 scoped_refptr<base::RefCountedMemory> png_bytes; local
462 if (!ConvertImageFamilyToBitmaps(resized_image_family, &bitmaps, &png_bytes))
470 size_t image_count = bitmap_count + (png_bytes.get() ? 1 : 0);
476 if (png_bytes.get())
477 buffer_size += sizeof(ICONDIRENTRY) + png_bytes->size()
    [all...]
  /external/chromium_org/ui/gfx/image/
image_unittest.cc 157 scoped_refptr<base::RefCountedMemory> png_bytes = image.As1xPNGBytes(); local
158 EXPECT_TRUE(png_bytes.get());
159 EXPECT_FALSE(png_bytes->size());
299 scoped_refptr<base::RefCountedMemory> png_bytes = local
303 image_png_reps.push_back(gfx::ImagePNGRep(png_bytes, ideal_scale_factor));
309 EXPECT_TRUE(gt::IsEqual(png_bytes, from_platform.AsBitmap()));
315 scoped_refptr<base::RefCountedMemory> png_bytes = local
318 image_png_reps.push_back(gfx::ImagePNGRep(png_bytes, ui::SCALE_FACTOR_100P));

Completed in 137 milliseconds