HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 251 - 275 of 979) sorted by null

<<11121314151617181920>>

  /external/chromium_org/content/public/common/
content_client.h 30 class Image;
132 // Returns a native image given its id.
133 virtual gfx::Image& GetNativeImageNamed(int resource_id) const;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
DragImageTest.cpp 35 #include "core/platform/graphics/Image.h"
50 class TestImage : public Image {
59 : Image(0)
81 // Stub implementations of pure virtual Image functions.
139 // Tests that the drag image is a deep copy.
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Image9.h 13 #include "libGLESv2/renderer/Image.h"
28 class Image9 : public Image
34 static Image9 *makeImage9(Image *img);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
PageSiteComposite.java 15 import org.eclipse.swt.graphics.Image;
68 * Sets the {@link Image} for title;
70 public void setTitleImage(Image image) {
71 m_title.setImage(image);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentation.java 19 import org.eclipse.swt.graphics.Image;
97 * @return the {@link Image} to display on {@link Button}.
99 protected Image getImage() {
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Renderer.java 43 import com.jme3.texture.Image;
243 public void deleteImage(Image image);
  /external/jmonkeyengine/engine/src/test/jme3test/conversion/
TestMipMapGen.java 40 import com.jme3.texture.Image;
73 Image imageCustomMip = texCustomMip.getImage().clone();
  /external/proguard/src/proguard/gui/splash/
BufferedSprite.java 24 import java.awt.image.BufferedImage;
27 * This Sprite encapsulates another Sprite, which is then buffered in an Image.
35 private final Image bufferImage;
45 * Creates a new BufferedSprite with an ABGR image.
46 * @param bufferX the x offset of the buffer image.
47 * @param bufferY the y offset of the buffer image.
48 * @param width the width of the buffer image.
49 * @param height the height of the buffer image.
51 * @param x the variable x ordinate of the image buffer for painting.
52 * @param y the variable y ordinate of the image buffer for painting
    [all...]
  /pdk/apps/CameraITS/tests/
test_jpeg.py 15 import its.image namespace
19 import Image
41 img = its.image.load_yuv420_to_rgb_image(fname, w, h)
42 its.image.write_image(img, "%s_fmt=yuv.jpg" % (NAME))
43 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
44 rgb0 = its.image.compute_image_means(tile)
52 img = numpy.array(Image.open(fname)).reshape(w,h,3) / 255.0
53 tile = its.image.get_image_patch(img, 0.45, 0.45, 0.1, 0.1)
54 rgb1 = its.image.compute_image_means(tile)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageOverlay.java 30 import org.eclipse.swt.graphics.Image;
34 import java.awt.image.BufferedImage;
35 import java.awt.image.DataBufferInt;
36 import java.awt.image.WritableRaster;
40 * The {@link ImageOverlay} class renders an image as an overlay.
44 * Whether the image should be pre-scaled (scaled to the zoom level) once
54 /** Current background image. Null when there's no image. */
55 private Image mImage;
57 /** A pre-scaled version of the image */
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/menu/
MenuTreePage.java 26 import org.eclipse.swt.graphics.Image;
47 public Image getPageImage() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/
OtherXmlTreePage.java 26 import org.eclipse.swt.graphics.Image;
47 public Image getPageImage() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LinearLayoutWeightFix.java 27 import org.eclipse.swt.graphics.Image;
73 public Image getImage() {
ObsoleteLayoutParamsFix.java 20 import org.eclipse.swt.graphics.Image;
76 public Image getImage() {
SetScrollViewSizeFix.java 26 import org.eclipse.swt.graphics.Image;
68 public Image getImage() {
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraTestUtils.java 26 import android.media.Image;
28 import android.media.Image.Plane;
59 Image image = null; local
61 image = reader.acquireNextImage();
63 if (image != null) {
64 image.close();
132 * Check if image size and format match given size and format.
134 public static void checkImage(Image image, int width, int height, int format)
    [all...]
  /external/chromium_org/chrome/browser/favicon/
favicon_util.cc 13 #include "ui/gfx/image/image_png_rep.h"
14 #include "ui/gfx/image/image_skia.h"
23 // Creates image reps of DIP size |favicon_size| for the subset of
24 // |scale_factors| for which the image reps can be created without resizing
110 void FaviconUtil::SetFaviconColorSpace(gfx::Image* image) {
112 image->SetSourceColorSpace(base::mac::GetSystemColorSpace());
117 gfx::Image FaviconUtil::SelectFaviconFramesFromPNGs(
121 // Create image reps for as many scale factors as possible without resizing
125 // Creating the gfx::Image from |png_data| without resizing or decoding i
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_theme_service.h 75 virtual gfx::Image GetImageNamed(int id) const OVERRIDE;
150 // These functions return an image that is not owned by the caller and should
153 static gfx::Image GetFolderIcon(bool native);
154 static gfx::Image GetDefaultFavicon(bool native);
163 typedef std::map<int, gfx::Image*> ImageCache;
220 // Takes the base frame image |base_id| and tints it with |tint_id|.
301 // Image cache of lazily created images, created when requested by
315 static base::LazyInstance<gfx::Image> default_folder_icon_;
316 static base::LazyInstance<gfx::Image> default_bookmark_icon_;
  /external/chromium_org/chrome/browser/extensions/
extension_disabled_ui.cc 41 #include "ui/gfx/image/image.h"
42 #include "ui/gfx/image/image_skia_operations.h"
143 const gfx::Image& icon);
153 virtual gfx::Image GetBubbleViewIcon() OVERRIDE;
174 gfx::Image icon_;
197 const gfx::Image& icon)
204 icon_ = gfx::Image(
250 gfx::Image ExtensionDisabledGlobalError::GetBubbleViewIcon() {
343 const gfx::Image& icon)
356 extensions::ExtensionResource image = extensions::IconsInfo::GetIconResource( local
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libgif.cpp 100 void CheckFreeExtension(SavedImage* Image) {
101 if (Image->ExtensionBlocks) {
103 FreeExtension(Image);
105 GifFreeExtensions(&Image->ExtensionBlockCount, &Image->ExtensionBlocks);
112 const ColorMapObject* cmap = gif->Image.ColorMap;
130 static int find_transpIndex(const SavedImage& image, int colorCount) {
132 for (int i = 0; i < image.ExtensionBlockCount; ++i) {
133 const ExtensionBlock* eb = image.ExtensionBlocks + i;
210 SavedImage* image = &gif->SavedImages[gif->ImageCount-1] local
    [all...]
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 100 void CheckFreeExtension(SavedImage* Image) {
101 if (Image->ExtensionBlocks) {
103 FreeExtension(Image);
105 GifFreeExtensions(&Image->ExtensionBlockCount, &Image->ExtensionBlocks);
112 const ColorMapObject* cmap = gif->Image.ColorMap;
130 static int find_transpIndex(const SavedImage& image, int colorCount) {
132 for (int i = 0; i < image.ExtensionBlockCount; ++i) {
133 const ExtensionBlock* eb = image.ExtensionBlocks + i;
210 SavedImage* image = &gif->SavedImages[gif->ImageCount-1] local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_texfilter.c 411 /* Power of two image sizes only */
486 * Compute slice/image to use for 1D or 2D array texture.
508 const struct gl_texture_image *img = texObj->Image[0][level];
558 const struct gl_texture_image *img = texObj->Image[0][level];
834 GLenum format = tObj->Image[0][tObj->BaseLevel]->_BaseFormat;
924 sample_1d_nearest(ctx, samp, tObj->Image[0][level], texcoord[i], rgba[i]);
940 sample_1d_linear(ctx, samp, tObj->Image[0][level], texcoord[i], rgba[i]);
957 sample_1d_nearest(ctx, samp, tObj->Image[0][tObj->_MaxLevel],
963 sample_1d_nearest(ctx, samp, tObj->Image[0][level ], texcoord[i], t0);
964 sample_1d_nearest(ctx, samp, tObj->Image[0][level+1], texcoord[i], t1)
1006 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1023 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1366 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1383 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
2232 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
2249 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3020 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3038 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3311 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3328 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 411 /* Power of two image sizes only */
486 * Compute slice/image to use for 1D or 2D array texture.
508 const struct gl_texture_image *img = texObj->Image[0][level];
558 const struct gl_texture_image *img = texObj->Image[0][level];
834 GLenum format = tObj->Image[0][tObj->BaseLevel]->_BaseFormat;
924 sample_1d_nearest(ctx, samp, tObj->Image[0][level], texcoord[i], rgba[i]);
940 sample_1d_linear(ctx, samp, tObj->Image[0][level], texcoord[i], rgba[i]);
957 sample_1d_nearest(ctx, samp, tObj->Image[0][tObj->_MaxLevel],
963 sample_1d_nearest(ctx, samp, tObj->Image[0][level ], texcoord[i], t0);
964 sample_1d_nearest(ctx, samp, tObj->Image[0][level+1], texcoord[i], t1)
1006 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1023 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1366 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
1383 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
2232 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
2249 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3020 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3038 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3311 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
3328 struct gl_texture_image *image = tObj->Image[0][tObj->BaseLevel]; local
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TextureAtlas.java 44 import com.jme3.texture.Image;
45 import com.jme3.texture.Image.Format;
65 * image data is stored in a byte array for each map name. Later each map can be retrieved as
231 private boolean addImage(Image image, String name, String mapName, String sourceTextureName) {
244 drawImage(image, location.getX(), location.getY(), mapName);
251 Node node = root.insert(image);
261 } else if (location.width != image.getWidth() || location.height != image.getHeight()) {
267 drawImage(image, location.getX(), location.getY(), mapName)
    [all...]
  /external/chromium_org/cc/test/
test_web_graphics_context_3d.h 225 struct Image {
226 Image();
227 ~Image();
232 DISALLOW_COPY_AND_ASSIGN(Image);
245 ScopedPtrHashMap<unsigned, Image> images;

Completed in 729 milliseconds

<<11121314151617181920>>