HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 226 - 250 of 638) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/awt/org/apache/harmony/awt/wtk/
NativeWindow.java 23 import java.awt.Image;
178 * Set the image to be displayed in the minimized icon for
180 * @param image the icon image to be displayed
182 void setIconImage(Image image);
  /sdk/draw9patch/src/com/android/draw9patch/ui/
OpenFilePanel.java 6 import java.awt.image.BufferedImage;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
CaptureLoader.java 25 import java.awt.Image;
27 import java.awt.image.BufferedImage;
113 // Ensure the image is in the right format
114 BufferedImage image = new BufferedImage(chunk.getWidth(), chunk.getHeight(), local
116 Graphics2D g = image.createGraphics();
120 psd.addLayer(name, image, new Point(x, y), visible);
129 public static Image loadCapture(IDevice device, Window window, String params) {
  /cts/tools/annotation-helper/src/spechelper/
MyCompletion.java 22 import org.eclipse.swt.graphics.Image;
32 private Image m_img;
39 Image image, String displayString,
46 m_img = image;
76 public Image getImage() {
  /external/qemu/android/skin/
file.h 15 #include "android/skin/image.h"
23 SkinImage* image; member in struct:SkinBackground
38 SkinImage* image; member in struct:SkinButton
  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_QWin.h 62 void setImage(QImage *image);
70 QImage *image(void) { return my_image; } function in class:SDL_QWin
  /external/webkit/WebCore/css/
CSSImageGeneratorValue.cpp 29 #include "Image.h"
81 Image* CSSImageGeneratorValue::getImage(RenderObject* renderer, const IntSize& size)
93 // Don't generate an image for empty sizes.
97 // Look up the image in our cache.
101 void CSSImageGeneratorValue::putImage(const IntSize& size, PassRefPtr<Image> image)
103 m_images.add(size, image);
SVGCSSPropertyNames.in 26 image-rendering
  /external/webkit/WebCore/platform/graphics/mac/
GraphicsContextMac.mm 111 NSImage *image = [NSImage imageNamed:name];
112 ASSERT(image); // if image is not available, we want to know
113 NSColor *color = (image ? [NSColor colorWithPatternImage:image] : nil);
  /external/webkit/WebCore/rendering/
RenderImage.h 55 virtual Image* image(int /* width */ = 0, int /* height */ = 0) { return m_cachedImage ? m_cachedImage->image() : nullImage(); } function in class:WebCore::RenderImage
98 // The image we are rendering.
102 // Text to display as long as the image isn't available.
105 static Image* nullImage();
RenderMediaControlsChromium.cpp 40 typedef WTF::HashMap<const char*, Image*> MediaControlImageMap;
43 static Image* platformResource(const char* name)
47 if (Image* image = gMediaControlImageMap->get(name))
48 return image;
49 if (Image* image = Image::loadPlatformResource(name).releaseRef()) {
50 gMediaControlImageMap->set(name, image);
51 return image;
    [all...]
  /external/webkit/WebCore/svg/graphics/filters/
SVGFETile.cpp 75 tileImageContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, IntPoint());
76 RefPtr<Pattern> pattern = Pattern::create(tileImage->image(), true, true);
  /external/webkit/WebKit/mac/WebView/
WebDocumentPrivate.h 35 - (NSImage *)image;
  /cts/tools/host/src/com/android/cts/
HostUtils.java 21 import java.awt.image.BufferedImage;
22 import java.awt.image.DataBuffer;
23 import java.awt.image.DataBufferUShort;
24 import java.awt.image.Raster;
25 import java.awt.image.SampleModel;
26 import java.awt.image.SinglePixelPackedSampleModel;
67 * @param rawImage the image to convert.
  /external/jpeg/
wrrle.c 38 * Since RLE stores scanlines bottom-to-top, we have to invert the image
56 jvirt_sarray_ptr image; /* virtual array to store the output image */ member in struct:__anon2768
87 * Make sure the image can be stored in RLE format.
89 * - RLE stores image dimensions as *signed* 16 bit integers. JPEG
133 ((j_common_ptr) cinfo, dest->image, (JDIMENSION) 0, (JDIMENSION) 1, TRUE);
160 ((j_common_ptr) cinfo, dest->image,
201 /* Add a comment to the output image with the true colormap length. */
225 ((j_common_ptr) cinfo, dest->image,
239 ((j_common_ptr) cinfo, dest->image,
    [all...]
rdrle.c 48 * For now, we ignore any alpha channel in the image.
56 * Since RLE stores scanlines bottom-to-top, we have to invert the image
58 * incoming image into a virtual array on the first get_pixel_rows call,
68 jvirt_sarray_ptr image; /* virtual array to hold the image */ member in struct:_rle_source_struct
77 * Read the file header; return image size and component count.
163 /* request a virtual array to hold the image */
164 source->image = (*cinfo->mem->request_virt_sarray)
182 * Called only after load_image has read the image into the virtual array.
193 ((j_common_ptr) cinfo, source->image, source->row, (JDIMENSION) 1, FALSE)
    [all...]
  /frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
JPEGImageWriter.java 41 import java.awt.image.*;
68 private RenderedImage image; field in class:JPEGImageWriter
76 //-- y step for image subsampling
78 //-- x step for image subsampling
105 throw new IllegalArgumentException("Image equals null");
123 System.out.println("****J: Image is NULL");
211 // Use Bitmap.compress() to write the image
283 * Sets image output stream in IJG layer
291 * @param data image data buffer to encode
327 * @param image
    [all...]
  /frameworks/base/opengl/libs/GLES_CM/
gl.cpp 173 extern "C" void __glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image);
174 extern "C" void __glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image);
177 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image)
180 (GLeglImageOES)egl_get_image_for_current_context((EGLImageKHR)image);
184 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image)
187 (GLeglImageOES)egl_get_image_for_current_context((EGLImageKHR)image);
  /packages/apps/Launcher2/src/com/android/launcher2/
WallpaperChooser.java 132 * When using touch if you tap an image it triggers both the onItemClick and
175 ImageView image; local
178 image = (ImageView) mLayoutInflater.inflate(R.layout.wallpaper_item, parent, false);
180 image = (ImageView) convertView;
184 image.setImageResource(thumbRes);
185 Drawable thumbDrawable = image.getDrawable();
192 return image;
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViewsTest.java 196 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image); local
197 assertNull(image.getDrawable());
201 assertNotNull(image.getDrawable());
205 ((BitmapDrawable) image.getDrawable()).getBitmap());
226 // create the test image first
232 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image); local
233 assertNull(image.getDrawable());
240 ((BitmapDrawable) image.getDrawable()).getBitmap());
243 // remove the test image file
250 * Returns absolute file path of location where test image should be store
358 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image); local
461 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image); local
486 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image); local
613 ImageView image = (ImageView) mResult.findViewById(R.id.remoteView_image); local
    [all...]
  /external/webkit/WebKit/win/WebCoreSupport/
WebDragClient.cpp 140 void WebDragClient::startDrag(DragImageRef image, const IntPoint& imageOrigin, const IntPoint& dragPoint, Clipboard* clipboard, Frame* frame, bool isLink)
154 if (source && (image || dataObject)) {
155 if (image) {
159 GetObject(image, sizeof(BITMAP), &b);
164 sdi.hbmpDragImage = image;
247 //First step in drawing the link drag image width
273 // We now know how big the image needs to be, so we create and
275 HBITMAP image = 0; local
284 image = allocImage(workingDC, imageSize, &contextRef);
285 if (!image) {
    [all...]
  /external/webkit/WebKit/mac/Misc/
WebNSPasteboardExtras.mm 200 // This image data is either the only subresource of an archive (HTML image case)
201 // or the main resource (standalone image case).
228 - (void)_web_writeImage:(NSImage *)image
236 ASSERT(image || element);
242 if (image)
243 [self setData:[image TIFFRepresentation] forType:NSTIFFPboardType];
271 if (CachedImage* image = toRenderImage(renderer)->cachedImage()) {
272 extension = image->image()->filenameExtension()
    [all...]
  /frameworks/base/libs/surfaceflinger/
BlurFilter.cpp 359 GGLSurface const* image,
364 if (image->format == GGL_PIXEL_FORMAT_RGB_565) {
365 err = blurFilter< BlurColor565<0x80> >(image, image, kernelSizeUser, repeat);
366 } else if (image->format == GGL_PIXEL_FORMAT_RGBX_8888) {
367 err = blurFilter< BlurColor888X<0x80> >(image, image, kernelSizeUser, repeat);
  /hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/
JPEGTest.c 141 /* Set grayscale flag, namely if image is gray then set it to 1, */
292 PRINT("No image in jpeg!\n");
312 PRINT("nProgressive IMAGE!\n");
333 printf("APP:: Image chroma format is OMX_COLOR_FormatYUV420PackedPlanar\n");
336 printf("APP:: Image chroma format is OMX_COLOR_FormatYUV411Planar\n");
339 printf("APP:: Image chroma format is OMX_COLOR_FormatYUV422Interleaved\n");
342 printf("APP:: Image chroma format is OMX_COLOR_FormatYUV444Interleaved\n");
345 printf("APP:: Image chroma format is OMX_COLOR_FormatL8 \n");
348 printf("APP:: Cannot find Image chroma format \n");
352 printf("APP:: Image Width x Height = %u * %u\n", Get16m(Data+5), Get16m(Data+3) )
    [all...]
  /bootable/bootloader/legacy/arch_msm7k/
nand.c 534 unsigned char *image = data; local
545 if(_flash_read_page(flash_cmdlist, flash_ptrlist, page++, image, spare)) {
549 image += 2048;
550 memcpy(image, spare, extra_per_page);
551 image += extra_per_page;
565 const unsigned char *image = data; local
574 dprintf("flash_write_image: image undersized (%d < %d)\n", bytes, wsize);
591 r = _flash_write_page(flash_cmdlist, flash_ptrlist, page++, image, image + 2048);
593 r = _flash_write_page(flash_cmdlist, flash_ptrlist, page++, image, spare)
    [all...]

Completed in 1632 milliseconds

1 2 3 4 5 6 7 8 91011>>