/external/chromium_org/chrome/browser/extensions/api/notifications/ |
notifications_api.cc | 25 #include "ui/gfx/image/image.h" 26 #include "ui/gfx/image/image_skia.h" 27 #include "ui/gfx/image/image_skia_rep.h" 47 // gfx::Image (in ARGB format). 50 gfx::Image* return_image) { 105 *return_image = gfx::Image(skia); 252 gfx::Image icon; 286 &optional_fields.image); 287 // We should have an image if and only if the type is an image type 387 gfx::Image image; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_mipmap_tree.c | 122 * image (determined by \p face and \p level). 124 * \param curOffset points to the offset at which the image is to be stored 125 * and is updated by this function according to the size of the image. 273 maxLod = MIN2(maxLod, tObj->Image[0][minLod]->MaxNumLevels - 1 + minLod); 297 * Checks whether the given miptree can hold the given texture image at the 331 firstImage = texObj->Image[0][texObj->BaseLevel]; 370 struct gl_texture_image *texImg = texObj->Image[0][texObj->BaseLevel]; 375 radeon_warning("%s(%p) No image in given texture object(%p).\n", 400 * Ensure that the given image is stored in the given miptree from now on. 403 radeon_texture_image *image, [all...] |
/external/chromium_org/ui/gfx/ |
icon_util.cc | 18 #include "ui/gfx/image/image.h" 19 #include "ui/gfx/image/image_family.h" 40 // Windows icons. For each desired image dimension, it chooses the most 41 // appropriate image for that size, and resizes it to the desired size. 43 // |image_family| is empty, all images in the family have size 0x0, or an image 54 const gfx::Image* best = image_family.GetBest(size); 61 // icons at full size if only if there is a 256x256 (kLargeIconSize) image 75 // There is no |dimension|x|dimension| source image. 85 resized_image_family->Add(gfx::Image::CreateFrom1xBitmap(resized_bitmap)) 109 const gfx::Image& image = *it; local 295 gfx::Image image = gfx::Image::CreateFrom1xPNGBytes(png_bytes, png_size); local 492 ICONIMAGE* image = reinterpret_cast<ICONIMAGE*>(&buffer[offset]); local [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_mipmap_tree.c | 122 * image (determined by \p face and \p level). 124 * \param curOffset points to the offset at which the image is to be stored 125 * and is updated by this function according to the size of the image. 273 maxLod = MIN2(maxLod, tObj->Image[0][minLod]->MaxNumLevels - 1 + minLod); 297 * Checks whether the given miptree can hold the given texture image at the 331 firstImage = texObj->Image[0][texObj->BaseLevel]; 370 struct gl_texture_image *texImg = texObj->Image[0][texObj->BaseLevel]; 375 radeon_warning("%s(%p) No image in given texture object(%p).\n", 400 * Ensure that the given image is stored in the given miptree from now on. 403 radeon_texture_image *image, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
XmlPropertyEditor.java | 66 import org.eclipse.swt.graphics.Image; 79 import java.awt.image.BufferedImage; 171 // Decide whether it's a color, an image, a nine patch etc 208 Image swtImage = null; 210 Map<String, Image> cache = getImageCache(property); 227 // // 9-patch image: How do we paint this? 230 // BufferedImage image = ninepatch.getImage(); 232 Map<String, Image> cache = getImageCache(property); 243 // Scale image 531 private static Map<String, Image> getImageCache(@NonNull Property property) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
PaletteControl.java | 82 import org.eclipse.swt.graphics.Image; 102 import java.awt.image.BufferedImage; 621 Image image = descriptor.createImage(); local 622 ImageControl imageControl = new ImageControl(parent, SWT.None, image); 755 // See if we can find out the bounds of this element from a preview image. 874 final Image image = new Image(display, size.x, size.y); local 1020 BufferedImage image = session.getImage(); local [all...] |
/external/chromium_org/chrome/browser/extensions/ |
extension_web_ui.cc | 39 #include "ui/gfx/image/image_skia.h" 84 // Run favicon callbck with image result. If no favicon was available then 85 // |image| will be empty. 88 const gfx::Image& image) { 93 image.AsImageSkia().image_reps(); 390 RunFaviconCallbackAsync(callback, gfx::Image()); 395 RunFaviconCallbackAsync(callback, gfx::Image()); 400 // resources. Load image reps for all supported scale factors (in addition to
|
external_install_ui.cc | 40 #include "ui/gfx/image/image.h" 41 #include "ui/gfx/image/image_skia_operations.h" 139 virtual gfx::Image GetBubbleViewIcon() OVERRIDE; 356 gfx::Image ExternalInstallGlobalError::GetBubbleViewIcon() { 360 return gfx::Image(gfx::ImageSkiaOperations::CreateResizedImage(
|
extension_icon_manager.cc | 22 #include "ui/gfx/image/image.h" 64 // synchronously if the image is already cached. 96 const gfx::Image& image) { 97 if (image.IsEmpty()) 106 icons_[extension_id] = ApplyTransforms(*image.ToSkBitmap());
|
extension_icon_manager_unittest.cc | 58 // The number of observed image loads that have not been waited for. 61 // Whether we are currently waiting for an image load. 80 // implementation. Then it lets the test know that an image load was observed. 82 const gfx::Image& image) OVERRIDE { 83 ExtensionIconManager::OnImageLoaded(extension_id, image);
|
/external/chromium_org/chrome/browser/notifications/ |
message_center_notification_manager.cc | 380 // Notification image. 416 const gfx::Image* image, 420 // Set the image directly if we have it. 421 if (image && !image->IsEmpty()) { 422 callback.Run(*image); 426 // Leave the image null if there's no URL. 432 LOG(WARNING) << "Notification needs an image but has no RenderViewHost"; 439 LOG(WARNING) << "Notification needs an image but has no WebContents" [all...] |
message_center_settings_controller.cc | 35 #include "ui/gfx/image/image.h" 48 ProfileNotifierGroup(const gfx::Image& icon, 61 ProfileNotifierGroup::ProfileNotifierGroup(const gfx::Image& icon, 252 // that it will fail to obtain the image if there are no history data for 346 UpdateIconImage(NotifierId(url), favicon_result.image)); 351 const gfx::ImageSkia& image) { 355 gfx::Image(image)));
|
/external/chromium_org/chrome/browser/themes/ |
theme_service.cc | 33 #include "ui/gfx/image/image_skia.h" 108 gfx::Image ThemeService::GetImageNamed(int id) const { 111 gfx::Image image; local 113 image = theme_supplier_->GetImageNamed(id); 115 if (image.IsEmpty()) 116 image = rb_.GetNativeImageNamed(id); 118 return image; 122 gfx::Image image = GetImageNamed(id) local [all...] |
/external/chromium_org/chrome/browser/ui/views/autofill/ |
autofill_dialog_views.h | 35 class Image; 241 // A view which displays an image, optionally some messages and a button. Used 408 void SetIcon(const gfx::Image& image); 413 const gfx::Image& icon); 620 // Used to display an image in the button strip extra view.
|
/external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/ |
Renderer11.h | 160 // Image operations 161 virtual Image *createImage(); 162 virtual void generateMipmap(Image *dest, Image *source);
|
Renderer9.h | 175 // Image operations 176 virtual Image *createImage(); 177 virtual void generateMipmap(Image *dest, Image *source);
|
/external/chromium_org/ui/message_center/ |
message_center_impl.cc | 350 const gfx::Image& image) { 351 if (notification_list_->SetNotificationIcon(notification_id, image)) { 358 const gfx::Image& image) { 359 if (notification_list_->SetNotificationImage(notification_id, image)) { 367 const gfx::Image& image) { 371 button_index, image)) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
Utils.java | 28 import org.eclipse.swt.graphics.Image; 61 // Image files 144 * Downsample Image to 8 bit depth format so that the resulting image data 145 * can be saved to GIF. Note. If the source image contains photo quality 175 public static ImageData downSample(Image image) { 176 ImageData data = image.getImageData(); 218 // create a new image using the new palette: 219 // for each pixel in the old image, look up the best matchin 368 String image = null; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/post/ |
HDRRenderer.java | 41 import com.jme3.texture.Image;
42 import com.jme3.texture.Image.Format;
91 private Image.Format bufFormat = Format.RGB16F;
|
/external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/ |
MjpegFileWriter.java | 4 import java.awt.Image; 5 import java.awt.image.BufferedImage; 58 public void addImage(Image image) throws Exception { 59 addImage(writeImageToBytes(image)); 106 // // write 00db and image bytes... 381 // 00db size jpg image data ... 476 public byte[] writeImageToBytes(Image image) throws Exception { 478 if (image instanceof BufferedImage && ((BufferedImage) image).getType() == BufferedImage.TYPE_INT_RGB) [all...] |
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
CameraOps.java | 28 import android.media.Image; 302 Image i = null; 435 void onCaptureAvailable(Image capture);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AaptQuickFix.java | 47 import org.eclipse.swt.graphics.Image; 292 public Image getImage() { 401 public Image getImage() {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/ |
LibraryProperties.java | 38 import org.eclipse.swt.graphics.Image; 61 private Image mMatchIcon; 62 private Image mErrorIcon;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
DurationMinimap.java | 34 import org.eclipse.swt.graphics.Image; 92 private Image mBackBufferImage; 221 mBackBufferImage = new Image(getDisplay(),
|
/external/chromium_org/ash/system/brightness/ |
tray_brightness.cc | 21 #include "ui/gfx/image/image.h" 54 gfx::Image image = ui::ResourceBundle::GetSharedInstance().GetImageNamed( local 56 icon->SetImage(image.ToImageSkia());
|