/external/chromium_org/chrome/browser/ui/content_settings/ |
content_setting_bubble_model.h | 19 #include "ui/gfx/image/image.h" 37 PopupItem(const gfx::Image& image, 40 : image(image), 44 PopupItem(const gfx::Image& image, const std::string& title, int32 popup_id) 45 : image(image), title(title), web_contents(NULL), popup_id(popup_id) { 47 gfx::Image image; member in struct:ContentSettingBubbleModel::PopupItem [all...] |
/external/chromium_org/chrome/browser/ui/gtk/panels/ |
panel_gtk.cc | 42 #include "ui/gfx/image/cairo_cached_surface.h" 43 #include "ui/gfx/image/image.h" 146 gfx::Image CreateImageForColor(SkColor color) { 149 return gfx::Image(gfx::ImageSkia(canvas.ExtractImageRep())); 152 const gfx::Image GetActiveBackgroundDefaultImage() { 153 CR_DEFINE_STATIC_LOCAL(gfx::Image, image, ()); 154 if (image.IsEmpty()) 155 image = CreateImageForColor(kActiveBackgroundDefaultColor) [all...] |
/external/chromium_org/chrome/browser/ui/gtk/tabs/ |
tab_strip_gtk.h | 32 class Image; 99 // background image. Passed in from the titlebar and based on the size of the 240 // The drop indicator image. 241 gfx::Image* drop_arrow; 400 // Returns the image to use for indicating a drop on a tab. If is_down is 402 static gfx::Image* GetDropArrowImage(bool is_down); 457 // tab background image.
|
/external/chromium_org/chrome/browser/ui/libgtk2ui/ |
menu_util.cc | 17 GtkWidget* BuildMenuItemWithImage(const std::string& label, GtkWidget* image) { 19 gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menu_item), image); local 24 const gfx::Image& icon) { 102 gfx::Image icon; 236 gfx::Image icon;
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
ImageBitmap.cpp | 28 static inline PassRefPtr<Image> cropImage(Image* image, const IntRect& cropRect) 31 image->nativeImageForCurrentFrame()->bitmap().extractSubset(&cropped, cropRect); 35 ImageBitmap::ImageBitmap(HTMLImageElement* image, const IntRect& cropRect) 38 , m_imageElement(image) 40 IntRect srcRect = intersection(cropRect, IntRect(0, 0, image->width(), image->height())); 133 PassRefPtr<ImageBitmap> ImageBitmap::create(HTMLImageElement* image, const IntRect& cropRect) 136 RefPtr<ImageBitmap> imageBitmap(adoptRef(new ImageBitmap(image, normalizedCropRect))) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_texture.c | 102 * initialize the fields of swrast_texture_image without allocating the image 172 * Map a 2D slice of a texture image into user space. 176 * \param texImage the texture image 177 * \param slice the 3D image slice or array texture slice 255 struct gl_texture_image *texImage = texObj->Image[face][level]; 276 struct gl_texture_image *texImage = texObj->Image[face][level]; 344 struct gl_texture_image *texImage = texObj->Image[face][level];
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
TextureGeneratorBlend.java | 37 import com.jme3.texture.Image; 38 import com.jme3.texture.Image.Format; 162 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
TextureGeneratorMagic.java | 37 import com.jme3.texture.Image; 38 import com.jme3.texture.Image.Format; 185 return new Texture3D(new Image(Format.RGBA8, width, height, depth, dataArray));
|
TextureGeneratorVoronoi.java | 38 import com.jme3.texture.Image; 39 import com.jme3.texture.Image.Format; 159 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
TextureGeneratorWood.java | 36 import com.jme3.texture.Image; 37 import com.jme3.texture.Image.Format; 119 return new Texture3D(new Image(format, width, height, depth, dataArray));
|
/external/mesa3d/src/mesa/swrast/ |
s_texture.c | 102 * initialize the fields of swrast_texture_image without allocating the image 172 * Map a 2D slice of a texture image into user space. 176 * \param texImage the texture image 177 * \param slice the 3D image slice or array texture slice 255 struct gl_texture_image *texImage = texObj->Image[face][level]; 276 struct gl_texture_image *texImage = texObj->Image[face][level]; 344 struct gl_texture_image *texImage = texObj->Image[face][level];
|
/pdk/apps/CameraITS/pymodules/its/ |
image.py | 21 import Image 45 """Load a YUV420 image file, and return as an RGB image. 49 w: The width of the image. 50 h: The height of the image. 55 RGB float-3 image array, with pixel values in [0.0, 1.0]. 75 """Load a YUV420 image file, and return separate Y, U, and V plane images. 79 w: The width of the image. 80 h: The height of the image. 97 """Applies a LUT to every pixel in a float image array [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/uimodel/ |
UiViewElementNode.java | 45 import org.eclipse.swt.graphics.Image; 135 public Image getIcon() { 138 Image img = null;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/ |
ImageCanvas.java | 29 import org.eclipse.swt.graphics.Image; 51 private Image mImage; 104 public void setImage(Image image) { 109 mImage = image; 246 ErrorDialog.openError(getShell(), "Save Image", "Error saving image",
|
/external/chromium_org/chrome/browser/printing/ |
printing_layout_browsertest.cc | 30 #include "printing/image.h" 35 using printing::Image; 136 Image emf_content(emf); 142 Image emf_content(emf); 143 Image test_content(test_result); 144 Image png_content(png);
|
/external/chromium_org/chrome/test/functional/ispy/ispy_core/tools/ |
image_tools_unittest.py | 6 from PIL import Image 11 return Image.new('RGBA', size, color) 14 def _AllPixelsOfColor(image, color): 15 return not any(px != color for px in image.getdata()) 152 cross_image = Image.new('RGBA', (3, 3)) 153 white_image = Image.new('RGBA', (3, 3)) 154 dot_image = Image.new('RGBA', (3, 3))
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
ResultsElement.java | 21 import org.eclipse.swt.graphics.Image; 44 // Image descriptors 46 public static final Image ERROR_IMAGE = WORKBENCH_SHARED_IMAGES.getImage(ISharedImages.IMG_OBJS_ERROR_TSK); 48 public static final Image WARN_IMAGE = WORKBENCH_SHARED_IMAGES.getImage(ISharedImages.IMG_OBJS_WARN_TSK); 50 public static final Image INFO_IMAGE = WORKBENCH_SHARED_IMAGES.getImage(ISharedImages.IMG_OBJS_INFO_TSK); 52 public static final Image HELP_IMAGE = WORKBENCH_SHARED_IMAGES.getImage(ISharedImages.IMG_LCL_LINKTO_HELP); 574 * Sets the image descriptor
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
videoreader.py | 258 from PIL import Image 260 Image = None 280 if not Image: print 'Not', 282 if Image: 283 img = Image.fromstring("RGBA", (imgw, imgh), data)
|
/external/chromium_org/chrome/browser/ui/gtk/ |
gtk_theme_service.cc | 49 #include "ui/gfx/image/cairo_cached_surface.h" 50 #include "ui/gfx/image/image.h" 57 // The size of the rendered toolbar image. 201 // Builds and tints the image with |id| to the GtkStateType |state| and 251 base::LazyInstance<gfx::Image> GtkThemeService::default_folder_icon_ = 253 base::LazyInstance<gfx::Image> GtkThemeService::default_bookmark_icon_ = 305 // TODO(pkotwicz): Remove this const cast. The gfx::Image interface returns 310 gfx::Image GtkThemeService::GetImageNamed(int id) const { 317 gfx::Image* image = new gfx::Image(gfx::ImageSkia::CreateFrom1xBitmap local [all...] |
/external/chromium_org/cc/test/ |
test_web_graphics_context_3d.cc | 550 ScopedPtrHashMap<unsigned, Image>& images = namespace_->images; 551 images.set(image_id, make_scoped_ptr(new Image).Pass()); 578 ScopedPtrHashMap<unsigned, Image>& images = namespace_->images; 640 TestWebGraphicsContext3D::Image::Image() {} 642 TestWebGraphicsContext3D::Image::~Image() {}
|
/external/proguard/src/proguard/gui/splash/ |
OverrideGraphics2D.java | 27 import java.awt.image.*; 28 import java.awt.image.renderable.RenderableImage; 294 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, Color bgcolor, ImageObserver observer) 299 public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2, int sy2, ImageObserver observer) 304 public boolean drawImage(Image img, int x, int y, int width, int height, Color bgcolor, ImageObserver observer) 309 public boolean drawImage(Image img, int x, int y, int width, int height, ImageObserver observer) 314 public boolean drawImage(Image img, int x, int y, Color bgcolor, ImageObserver observer) 319 public boolean drawImage(Image img, int x, int y, ImageObserver observer) 324 public boolean drawImage(Image img, AffineTransform xform, ImageObserver obs)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
DeviceChooserDialog.java | 49 import org.eclipse.swt.graphics.Image; 77 private Image mDeviceImage; 78 private Image mEmulatorImage; 79 private Image mMatchImage; 80 private Image mNoMatchImage; 81 private Image mWarningImage; 143 public Image getColumnImage(Object element, int columnIndex) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
FingerPrintGraph.java | 27 import org.eclipse.swt.graphics.Image; 84 Image image; field in class:FingerPrintGraph 359 Image warning = (Image) this.resources.get("warning"); 364 // - first one is between end of bar and warning image beginning 367 // - second one is the warning image 370 // - last one is between end of the warning image and the scenario title beginning 396 Image warning = (Image) this.resources.get("warning") [all...] |
/external/chromium_org/apps/ |
shell_window.cc | 37 #include "ui/gfx/image/image_skia.h" 299 scoped_ptr<gfx::Image> ShellWindow::GetAppListIcon() { 305 return make_scoped_ptr(new gfx::Image()); 312 new gfx::Image(gfx::ImageSkia::CreateFrom1xBitmap(bmp))); 354 // Reset |app_icon_image_| to abort pending image load (if any). 372 void ShellWindow::UpdateAppIcon(const gfx::Image& image) { 373 if (image.IsEmpty()) 375 app_icon_ = image; 423 UpdateAppIcon(gfx::Image::CreateFrom1xBitmap(largest)) [all...] |
/external/chromium_org/chrome/browser/notifications/sync_notifier/ |
synced_notification.cc | 19 #include "ui/gfx/image/image.h" 100 app_icon_bitmap_ = gfx::Image::CreateFrom1xBitmap(*bitmap); 103 image_bitmap_ = gfx::Image::CreateFrom1xBitmap(*bitmap); 106 sender_bitmap_ = gfx::Image::CreateFrom1xBitmap(*bitmap); 112 button_bitmaps_[i] = gfx::Image::CreateFrom1xBitmap(*bitmap); 144 button_bitmaps_.push_back(gfx::Image()); 148 // If there is a profile image bitmap, fetch it 264 rich_notification_data.image = image_bitmap_; 284 gfx::Image icon_bitmap = app_icon_bitmap_ [all...] |