/external/chromium_org/chrome/browser/profiles/ |
gaia_info_update_service_unittest.cc | 18 #include "ui/gfx/image/image.h" 19 #include "ui/gfx/image/image_unittest_util.h" 77 gfx::Image image = gfx::test::CreateImage(); local 78 const SkBitmap* bmp = image.ToSkBitmap(); 96 image, GetCache()->GetAvatarIconOfProfileAtIndex(index))); 98 image, *GetCache()->GetGAIAPictureOfProfileAtIndex(index))); 105 gfx::Image old_image = GetCache()->GetAvatarIconOfProfileAtIndex(index); 127 gfx::Image old_image = GetCache()->GetAvatarIconOfProfileAtIndex(index) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSCrossfadeValue.cpp | 168 PassRefPtr<Image> CSSCrossfadeValue::image(RenderObject* renderer, const IntSize& size) function in class:WebCore::CSSCrossfadeValue 178 return Image::nullImage(); 180 Image* fromImage = cachedFromImage->imageForRenderer(renderer); 181 Image* toImage = cachedToImage->imageForRenderer(renderer); 184 return Image::nullImage();
|
CSSImageGeneratorValue.cpp | 32 #include "core/platform/graphics/Image.h" 83 Image* CSSImageGeneratorValue::getImage(RenderObject* renderer, const IntSize& size) 96 // Don't generate an image for empty sizes. 100 // Look up the image in our cache. 104 void CSSImageGeneratorValue::putImage(const IntSize& size, PassRefPtr<Image> image) 106 m_images.add(size, image); 109 PassRefPtr<Image> CSSImageGeneratorValue::image(RenderObject* renderer, const IntSize& size) function in class:WebCore::CSSImageGeneratorValue 113 return static_cast<CSSCanvasValue*>(this)->image(renderer, size) [all...] |
/external/chromium_org/tools/site_compare/commands/ |
maskmaker.py | 19 from PIL import Image 146 mask = Image.open(mask_filename) 157 mask = Image.new("1", size, 1) 165 # Find the baseline image 170 print " No baseline image found, mask will not be updated" 173 baseline = Image.open(os.path.join(mask_scrape_dir, mask_scrapes[0])) 193 scrape = Image.open(mask_scrape_filename) 214 # 1. convert("L") converts the RGB image to grayscale 216 # of an RGB image) to different ones. Because it operates on 220 # a monochrome bitmap. If the original RGB image were converte [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ImageControl.java | 30 import org.eclipse.swt.graphics.Image; 37 * An ImageControl which simply renders an image, with optional margins and tooltips. This 38 * is useful since a {@link CLabel}, even without text, will hide the image when there is 41 * The image is always rendered left and top aligned. 44 private Image mImage; 55 * Creates an ImageControl rendering the given image, which will be disposed when this 59 * @param parent the parent to add the image control to 61 * @param image the image to be rendered, which must not be null and should be unique 62 * for this image control since it will be disposed by this control whe [all...] |
/external/chromium_org/chrome/browser/themes/ |
browser_theme_pack.h | 32 class Image; 70 // Returns the set of image IDRs which can be overwritten by a user provided 85 virtual gfx::Image GetImageNamed(int id) OVERRIDE; 94 typedef std::map<int, gfx::Image> ImageCache; 105 // Maps image ids to maps of scale factors to file paths. 133 // Parses the image names out of an extension. 152 // Populate |images| cache with empty gfx::Images. Image reps are lazily 153 // generated when an image rep is requested via ImageSkia::GetRepresentation. 157 // Crops images down to a size such that most of the cropped image will be 181 // image already in |destination| that |source| would overwrite [all...] |
/external/chromium_org/ui/gfx/image/ |
image_family_unittest.cc | 6 #include "ui/gfx/image/image.h" 7 #include "ui/gfx/image/image_family.h" 8 #include "ui/gfx/image/image_skia.h" 9 #include "ui/gfx/image/image_unittest_util.h" 15 // Tests that |image| != NULL, and has the given width and height. 18 #define EXPECT_IMAGE_NON_NULL_AND_SIZE(image, expected_width, expected_height) \ 20 const gfx::Image* image_ = image; \ 38 // Insert an Image directly, instead of an ImageSkia [all...] |
/external/chromium_org/ui/message_center/ |
message_center_impl.h | 158 const gfx::Image& image) OVERRIDE; 160 const gfx::Image& image) OVERRIDE; 163 const gfx::Image& image) OVERRIDE;
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
TextureGeneratorClouds.java | 37 import com.jme3.texture.Image; 38 import com.jme3.texture.Image.Format; 129 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
TextureGeneratorDistnoise.java | 38 import com.jme3.texture.Image; 39 import com.jme3.texture.Image.Format; 106 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
TextureGeneratorMarble.java | 36 import com.jme3.texture.Image; 37 import com.jme3.texture.Image.Format; 103 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
TextureGeneratorMusgrave.java | 37 import com.jme3.texture.Image; 38 import com.jme3.texture.Image.Format; 113 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
TextureGeneratorStucci.java | 36 import com.jme3.texture.Image; 37 import com.jme3.texture.Image.Format; 123 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/ |
Caps.java | 38 import com.jme3.texture.Image; 39 import com.jme3.texture.Image.Format; 248 Image img = tex.getImage();
|
/external/jmonkeyengine/engine/src/test/jme3test/texture/ |
TestTexture3D.java | 18 import com.jme3.texture.Image; 19 import com.jme3.texture.Image.Format; 46 //we need to change the UV coordinates (the sphere is assumet to be inside the 3D image box) 101 return new Texture3D(new Image(Format.RGB8, 10, 10, 10, data));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/descriptors/ |
ViewElementDescriptor.java | 33 import org.eclipse.swt.graphics.Image; 185 public Image getGenericIcon() { 199 Image icon = factory.getIcon(name);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/ |
OverviewLinksPart.java | 27 import org.eclipse.swt.graphics.Image; 51 buf.append(String.format("<form><li style=\"image\" value=\"app_img\"><a href=\"page:%1$s\">", //$NON-NLS-1$ 58 buf.append(String.format("<li style=\"image\" value=\"perm_img\"><a href=\"page:%1$s\">", //$NON-NLS-1$ 65 buf.append(String.format("<li style=\"image\" value=\"inst_img\"><a href=\"page:%1$s\">", //$NON-NLS-1$ 72 buf.append(String.format("<li style=\"image\" value=\"srce_img\"><a href=\"page:%1$s\">", //$NON-NLS-1$ 79 buf.append("<li style=\"image\" value=\"android_img\">"); //$NON-NLS-1$ 89 Image androidLogo = AdtPlugin.getAndroidLogo(); 121 private Image getIcon(ElementDescriptor desc) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/ |
ValuesTreePage.java | 31 import org.eclipse.swt.graphics.Image; 54 public Image getPageImage() { 60 Image flag = FlagManager.get().getFlagForFolderName(parent.getName());
|
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/ |
PixelPerfectLoupeView.java | 33 import org.eclipse.swt.graphics.Image; 58 Image image = imageLoader.loadImage("show-overlay.png", Display.getDefault()); //$NON-NLS-1$ local 59 mShowInLoupeAction.setImageDescriptor(ImageDescriptor.createFromImage(image)); 137 Image overlayImage = PixelPerfectModel.getModel().getOverlayImage();
|
/external/chromium/chrome/browser/download/ |
download_util.h | 24 class Image; 200 // DownloadItem. If |icon| is NULL, no image will be accompany the drag. |view| 203 gfx::Image* icon,
|
/external/chromium/chrome/browser/ |
icon_manager.cc | 26 gfx::Image* IconManager::LookupIcon(const FilePath& file_name, 55 bool IconManager::OnImageLoaded(IconLoader* source, gfx::Image* result) {
|
/external/chromium_org/chrome/browser/extensions/ |
extension_uninstall_dialog.cc | 23 #include "ui/gfx/image/image.h" 39 const gfx::ImageSkia& image = is_app ? local 42 return image.GetRepresentation(ui::GetMaxScaleFactor()).sk_bitmap(); 74 extensions::ExtensionResource image = extensions::IconsInfo::GetIconResource( local 82 // Load the image asynchronously. The response will be sent to OnImageLoaded. 86 loader->LoadImageAsync(extension_, image, 92 void ExtensionUninstallDialog::SetIcon(const gfx::Image& image) { 93 if (image.IsEmpty()) [all...] |
/external/chromium_org/chrome/browser/notifications/ |
desktop_notification_service.h | 38 class Image; 119 // Same as above, but takes a gfx::Image for the icon instead. 123 const gfx::Image& icon,
|
/external/chromium_org/chrome/browser/ui/gtk/extensions/ |
browser_action_test_util_gtk.cc | 14 #include "ui/gfx/image/image.h" 53 gfx::Image BrowserActionTestUtil::GetIcon(int index) { 55 GtkWidget* image = gtk_button_get_image(GTK_BUTTON(button)); local 56 GdkPixbuf* pixbuf = gtk_image_get_pixbuf(GTK_IMAGE(image)); 57 // gfx::Image takes ownership of the |pixbuf| reference. We have to increase 58 // the ref count so |pixbuf| stays around when the image object is destroyed. 60 return gfx::Image(pixbuf);
|
/external/chromium_org/chrome/browser/ui/panels/ |
panel_host.h | 30 class Image; 48 gfx::Image GetPageIcon() const;
|