HomeSort by relevance Sort by last modified time
    Searched refs:JPEGCodec (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/ui/gfx/codec/
jpeg_codec_unittest.cc 101 TEST(JPEGCodec, EncodeDecodeRGB) {
110 EXPECT_TRUE(JPEGCodec::Encode(&original[0], JPEGCodec::FORMAT_RGB, w, h,
117 EXPECT_TRUE(JPEGCodec::Decode(&encoded[0], encoded.size(),
118 JPEGCodec::FORMAT_RGB, &decoded,
129 TEST(JPEGCodec, EncodeDecodeRGBA) {
148 EXPECT_TRUE(JPEGCodec::Encode(&original[0], JPEGCodec::FORMAT_RGBA, w, h,
155 EXPECT_TRUE(JPEGCodec::Decode(&encoded[0], encoded.size(),
156 JPEGCodec::FORMAT_RGBA, &decoded
    [all...]
jpeg_codec.h 21 class GFX_EXPORT JPEGCodec {
jpeg_codec.cc 46 JPEGCodec::LibraryVariant JPEGCodec::JpegLibraryVariant() {
204 bool JPEGCodec::Encode(const unsigned char* input, ColorFormat format,
460 bool JPEGCodec::Decode(const unsigned char* input, size_t input_size,
476 // See note in JPEGCodec::Encode() for why we need to destroy the cinfo
509 // Same as JPEGCodec::Encode(), libjpeg-turbo supports all input formats
557 // without conversions same as JPEGCodec::Encode().
615 SkBitmap* JPEGCodec::Decode(const unsigned char* input, size_t input_size) {
  /external/chromium_org/ui/gfx/image/
image_util.cc 19 scoped_ptr<SkBitmap> bitmap(gfx::JPEGCodec::Decode(input, input_size));
39 return gfx::JPEGCodec::Encode(
41 gfx::JPEGCodec::FORMAT_SkBitmap, bitmap.width(),
  /external/chromium_org/chrome/browser/chromeos/login/
user_image.cc 38 return gfx::JPEGCodec::Encode(
40 gfx::JPEGCodec::FORMAT_SkBitmap,
wallpaper_manager.cc 387 gfx::JPEGCodec::Encode(
389 gfx::JPEGCodec::FORMAT_SkBitmap,
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/
capture_web_contents_function.cc 121 encoded = gfx::JPEGCodec::Encode(
123 gfx::JPEGCodec::FORMAT_SkBitmap,
  /external/chromium_org/chrome/browser/ui/tab_contents/
core_tab_helper.cc 222 if (!gfx::JPEGCodec::Encode(
224 gfx::JPEGCodec::FORMAT_SkBitmap, bitmap.width(), bitmap.height(),
  /external/chromium_org/content/public/test/
render_widget_test.cc 137 ASSERT_TRUE(gfx::JPEGCodec::Encode(
139 gfx::JPEGCodec::FORMAT_BGRA,
  /external/chromium_org/cc/resources/
picture.cc 47 encoding_succeeded = gfx::JPEGCodec::Encode(
49 gfx::JPEGCodec::FORMAT_SkBitmap,
74 scoped_ptr<SkBitmap> decoded_jpeg(gfx::JPEGCodec::Decode(data, size));
  /external/chromium_org/chrome/browser/android/
most_visited_sites.cc 68 scoped_ptr<SkBitmap> image(gfx::JPEGCodec::Decode(
  /external/chromium/chrome/browser/history/
thumbnail_database.cc 268 bool encoded = gfx::JPEGCodec::Encode(
270 gfx::JPEGCodec::FORMAT_SkBitmap, thumbnail.width(),
top_sites.cc 575 if (!gfx::JPEGCodec::Encode(
577 gfx::JPEGCodec::FORMAT_BGRA, bitmap.width(),
    [all...]
thumbnail_database_unittest.cc 67 gfx::JPEGCodec::Decode(kGoogleThumbnail, sizeof(kGoogleThumbnail)));
history_backend_unittest.cc 273 gfx::JPEGCodec::Decode(kGoogleThumbnail, sizeof(kGoogleThumbnail)));
280 gfx::JPEGCodec::Decode(kWeewarThumbnail, sizeof(kWeewarThumbnail)));
    [all...]
expire_history_backend_unittest.cc 230 gfx::JPEGCodec::Decode(kGoogleThumbnail, sizeof(kGoogleThumbnail)));
    [all...]
top_sites_unittest.cc 110 scoped_ptr<SkBitmap> image(gfx::JPEGCodec::Decode(t1.front(),
    [all...]
  /external/chromium_org/ash/desktop_background/
desktop_background_controller_unittest.cc 205 if (!gfx::JPEGCodec::Encode(
207 gfx::JPEGCodec::FORMAT_SkBitmap, width, height, bitmap.rowBytes(),
desktop_background_controller.cc 104 scoped_ptr<SkBitmap> bitmap(gfx::JPEGCodec::Decode(
  /external/chromium_org/chrome/utility/
chrome_content_utility_client.cc 685 if (gfx::JPEGCodec::JpegLibraryVariant() == gfx::JPEGCodec::IJG_LIBJPEG) {
686 scoped_ptr<SkBitmap> decoded_image(gfx::JPEGCodec::Decode(
  /external/chromium_org/printing/
emf_win.cc 398 bitmap.reset(gfx::JPEGCodec::Decode(bits, bmih->biSizeImage));
  /external/chromium_org/ui/base/resource/
resource_bundle.cc 707 gfx::JPEGCodec::Decode(memory->front(), memory->size()));
  /external/chromium/chrome/browser/extensions/
extension_tabs_module.cc     [all...]
  /external/chromium_org/content/browser/devtools/
renderer_overrides_handler.cc 533 encoded = gfx::JPEGCodec::Encode(
535 gfx::JPEGCodec::FORMAT_SkBitmap,
    [all...]
  /external/chromium_org/chrome/browser/history/
expire_history_backend_unittest.cc 227 gfx::JPEGCodec::Decode(kGoogleThumbnail, sizeof(kGoogleThumbnail)));
    [all...]

Completed in 397 milliseconds

1 2