/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
ImageUtils.h | 27 * Definition of basic image types 43 * Default number of channels in image. 48 * Definition of an empty image. 53 * Convert image from BGR (interlaced) to YVU (non-interlaced) 56 * out: Resulting image (note must be preallocated before 58 * in: Input image 59 * width: Width of input image 60 * height: Height of input image 67 * Convert image from YVU (non-interlaced) to BGR (interlaced) 70 * out: Resulting image (note must be preallocated befor [all...] |
Pyramid.h | 34 ImageTypeShort *ptr; // Pointer containing the image 38 real pitch; // Pitch. Used for moving through image efficiently. 42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 ); 43 static void freeImage(PyramidShort *image);
|
/packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/ |
ImageUtils.h | 27 * Definition of basic image types 43 * Default number of channels in image. 48 * Definition of an empty image. 53 * Convert image from BGR (interlaced) to YVU (non-interlaced) 56 * out: Resulting image (note must be preallocated before 58 * in: Input image 59 * width: Width of input image 60 * height: Height of input image 67 * Convert image from YVU (non-interlaced) to BGR (interlaced) 70 * out: Resulting image (note must be preallocated befor [all...] |
Pyramid.h | 34 ImageTypeShort *ptr; // Pointer containing the image 38 real pitch; // Pitch. Used for moving through image efficiently. 42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 ); 43 static void freeImage(PyramidShort *image);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImageRotate.java | 91 protected void drawShape(Canvas canvas, Bitmap image) { 94 drawTransformedCropped(canvas, image, gPaint);
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
ImageUtils.h | 27 * Definition of basic image types 43 * Default number of channels in image. 48 * Definition of an empty image. 53 * Convert image from BGR (interlaced) to YVU (non-interlaced) 56 * out: Resulting image (note must be preallocated before 58 * in: Input image 59 * width: Width of input image 60 * height: Height of input image 67 * Convert image from YVU (non-interlaced) to BGR (interlaced) 70 * out: Resulting image (note must be preallocated befor [all...] |
Pyramid.h | 34 ImageTypeShort *ptr; // Pointer containing the image 38 real pitch; // Pitch. Used for moving through image efficiently. 42 static void createPyramid(ImageType image, PyramidShort *pyramid, int last = 3 ); 43 static void freeImage(PyramidShort *image);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtUtils.java | 28 import org.eclipse.swt.graphics.Image; 36 import java.awt.image.BufferedImage; 37 import java.awt.image.DataBuffer; 38 import java.awt.image.DataBufferByte; 39 import java.awt.image.DataBufferInt; 40 import java.awt.image.WritableRaster; 44 * Various generic SWT utilities such as image conversion. 81 * @return true if we can convert the given buffered image format 100 * @param image the image to be converte [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/ |
ImageBasedHeightMap.java | 37 import com.jme3.texture.Image;
42 * conversion of an image. The image used currently must have an equal height
43 * and width, although future work could scale an incoming image to a specific
52 protected Image colorImage;
55 public void setImage(Image image) {
56 this.colorImage = image;
60 * Creates a HeightMap from an Image. The image will be converted to [all...] |
/external/qemu/distrib/sdl-1.2.15/test/ |
testgl.c | 19 /* Define this to be the name of the logo image to use with -logo */ 175 SDL_Surface *image; local 188 image = SDL_CreateRGBSurface( 204 if ( image == NULL ) { 215 /* Copy the surface into the GL texture image */ 220 SDL_BlitSurface(surface, &area, image, &area); 227 /* Create an OpenGL texture for the image */ 239 image->pixels); 240 SDL_FreeSurface(image); /* No longer needed */ 253 SDL_Surface *image; local 312 SDL_Surface *image; local [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
DragClientGtk.cpp | 100 void DragClient::startDrag(DragImageRef image, const IntPoint& dragImageOrigin, const IntPoint& eventPos, Clipboard* clipboard, Frame* frame, bool linkDrag) 118 if (image) { 119 m_dragImage = image; 120 IntSize imageSize(cairo_image_surface_get_width(image), cairo_image_surface_get_height(image));
|
/packages/apps/Gallery2/jni/filters/ |
tinyplanet.cc | 29 ImageRGBA(unsigned char* image, int width, int height) 30 : image_(image), width_(width), height_(height) { 57 // Interpolate a pixel in a 3 channel image. 58 inline void InterpolatePixel(const ImageRGBA &image, float x, float y, 65 const unsigned char *p = image(x, y); 66 const unsigned char *p2 = image(x, y + 1); 68 // Interpolate each image color plane. 117 // Map to panorama image
|
/system/core/fastboot/ |
engine.c | 106 long long image_size; // real size of image file 110 void generate_ext4_image(struct image_data *image); 111 void cleanup_image(struct image_data *image); 130 /* generate image and return it as image->buffer. 131 * size of the buffer returned as image->image_size. 133 * image->partition_size specifies what is the size of the 134 * file partition we generate image for. 136 void (*generate)(struct image_data *image); 138 /* it cleans the buffer allocated during image creation 318 struct image_data image; local [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
ScreenViewer.java | 30 import java.awt.image.BufferedImage; 57 private BufferedImage image; field in class:ScreenViewer 282 if (image != null) { 287 g2.drawImage(image, 0, 0, null); 290 g2.drawImage(overlay, 0, image.getHeight() - overlay.getHeight(), null); 332 if (image != null) { 334 g.clipRect(0, 0, image.getWidth() * zoom + 1, image.getHeight() * zoom + 1); 342 int x = Math.max(0, Math.min((event.getX() + left) / zoom, image.getWidth() - 1)); 343 int y = Math.max(0, Math.min((event.getY() + top) / zoom, image.getHeight() - 1)) [all...] |
/external/chromium/chrome/browser/ui/views/tab_contents/ |
tab_contents_drag_win.cc | 114 const SkBitmap& image, 126 DoDragging(drop_data, ops, page_url, page_encoding, image, image_offset); 149 image, 173 const SkBitmap& image, 177 DoDragging(drop_data, ops, page_url, page_encoding, image, image_offset); 273 const SkBitmap& image, 298 // Set drag image. 299 if (!image.isNull()) { 301 image, gfx::Size(image.width(), image.height()), image_offset, &data) [all...] |
/external/webkit/Source/WebCore/inspector/front-end/ |
inspector.css | 80 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151))); 88 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(233, 233, 233)), to(rgb(207, 207, 207))); 127 -webkit-border-image: url(Images/toolbarItemSelected.png) 0 2 0 2; 196 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(251, 251, 251, 0.9)), to(rgba(231, 231, 231, 0.9))); 200 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(191, 191, 191, 0.7)), to(rgba(171, 171, 171, 0.5))); 204 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(111, 111, 111, 0.8)), to(rgba(91, 91, 91, 0.8))); 214 background-image: inherit; 219 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(191, 191, 191)), to(rgb(151, 151, 151))); 239 -webkit-border-image: none; 244 -webkit-border-image: none [all...] |
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/ |
ImageToAwt.java | 35 import com.jme3.texture.Image; 36 import com.jme3.texture.Image.Format; 41 import java.awt.image.*; 203 * Convert an AWT image to jME image. 205 public static void convert(BufferedImage image, Format format, ByteBuffer buf){ 208 throw new UnsupportedOperationException("Image format " + format + " is not supported"); 210 int width = image.getWidth(); 211 int height = image.getHeight(); 225 int argb = image.getRGB(x, y) [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderImage.cpp | 82 // If we'll be displaying either alt text or an image, add some padding. 94 ASSERT_ARG(newImage, newImage->image()); 96 // imageSize() returns 0 for the error image. We need the true size of the 97 // error image, so we have to get it by grabbing image() directly. 98 return IntSize(paddingWidth + newImage->image()->width() * style()->effectiveZoom(), paddingHeight + newImage->image()->height() * style()->effectiveZoom()); 101 // Sets the image height and width to fit the alt text. Returns true if the 102 // image size changed. 106 if (newImage && newImage->image()) 277 RefPtr<Image> image = m_imageResource->image(); local 395 Image* image = m_imageResource->image().get(); local [all...] |
/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/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/ |
main.js | 272 if (results.tests[selectedTest].actual.indexOf('IMAGE') != -1) { 273 $('image-outputs').style.display = ''; 276 $('image-outputs').style.display = 'none'; 337 if (results.tests[nextTest].actual.indexOf('IMAGE') != -1) { 338 new Image().src = getTestResultUrl(nextTest, 'expected-image'); 339 new Image().src = getTestResultUrl(nextTest, 'actual-image'); 379 var image = $(mode); 380 image.className = 'loading' [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_install_ui.cc | 183 void ExtensionInstallUI::SetIcon(SkBitmap* image) { 184 if (image) 185 icon_ = *image; 193 SkBitmap* image, const ExtensionResource& resource, int index) { 194 SetIcon(image); 264 // Load the image asynchronously. For the response, check OnImageLoaded. 266 ExtensionResource image = local 269 tracker_.LoadImage(extension_, image,
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
GraphicsContext3DCG.cpp | 35 #include "Image.h" 92 bool GraphicsContext3D::getImageData(Image* image, 99 if (!image) 103 bool hasAlpha = image->isBitmapImage() ? static_cast<BitmapImage*>(image)->frameHasAlphaAtIndex(0) : true; 104 if ((ignoreGammaAndColorProfile || (hasAlpha && !premultiplyAlpha)) && image->data()) { 107 decoder.setData(image->data(), true); 113 cgImage = image->nativeImageForCurrentFrame(); 122 // See whether the image is using an indexed color space, and i [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/ |
Action.java | 98 public void setImage(Bitmap image) { 99 mImage = image; 120 RectF image = new RectF(0, 0, source.getWidth(), source.getHeight()); local 132 m.setRectToRect(frame, image, Matrix.ScaleToFit.CENTER); 133 image.set(frame); 134 m.mapRect(image); 135 m.setRectToRect(image, frame, Matrix.ScaleToFit.FILL);
|
/packages/apps/Gallery2/src/com/android/photos/views/ |
TiledImageView.java | 51 TiledImageRenderer image; field in class:TiledImageView.ImageRendererWrapper 94 renderer.image = new TiledImageRenderer(this); 191 renderer.image.setModel(renderer.source, renderer.rotation); 199 renderer.image.setViewSize(width, height); 208 renderer.image.setModel(renderer.source, renderer.rotation); 209 renderer.image.setPosition(renderer.centerX, renderer.centerY, renderer.scale); 213 renderer.image.draw(mCanvas);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
ActivityMenuListener.java | 31 import org.eclipse.swt.graphics.Image; 93 Image image = sharedImages.getImage(ISharedImages.IMG_OBJS_CUNIT); local 94 item.setImage(image); 103 Image image = sharedImages.getImage(ISharedImages.IMG_OBJS_CLASS); local 109 current = addActivities(chooser, menu, current, image, preferred); 131 addActivities(chooser, menu, current, image, activities); 142 Image image, List<String> activities) [all...] |