HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 176 - 200 of 537) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/WebCore/css/
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/chromium/base/
pe_image_unittest.cc 12 bool ExportsCallback(const PEImage &image,
25 bool ImportsCallback(const PEImage &image,
38 bool SectionsCallback(const PEImage &image,
49 bool RelocsCallback(const PEImage &image,
59 bool ImportChunksCallback(const PEImage &image,
70 bool DelayImportChunksCallback(const PEImage &image,
  /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:__anon4628
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/opengl/libs/GLES_CM/
gl.cpp 174 extern "C" void __glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image);
175 extern "C" void __glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image);
178 void glEGLImageTargetTexture2DOES(GLenum target, GLeglImageOES image)
181 (GLeglImageOES)egl_get_image_for_current_context((EGLImageKHR)image);
185 void glEGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image)
188 (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/services/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...]
  /external/qemu/distrib/sdl-1.2.12/src/video/ps2gs/
SDL_gsvideo.c 181 static inline int loadimage_nonblock(int fd, struct ps2_image *image, int size,
192 data = (char *)image->ptr;
200 hm[2] = ((unsigned long long)image->fbp << 32) |
201 ((unsigned long long)image->fbw << 48) |
202 ((unsigned long long)image->psm << 56);
203 hm[4] = ((unsigned long long)image->x << 32) |
204 ((unsigned long long)image->y << 48);
205 hm[6] = (unsigned long long)image->w |
206 ((unsigned long long)image->h << 32);
208 /* make image mode tags *
    [all...]
  /external/skia/src/effects/
SkBlurMask.cpp 242 void SkMask_FreeImage(uint8_t* image);
243 void SkMask_FreeImage(uint8_t* image)
245 SkMask::FreeImage(image);
327 uint8_t* image = dst->fImage;
328 uint8_t* stop = image + dst->computeImageSize();
330 for (; image < stop; image += 1) {
331 *image = gamma[*image];
  /external/webkit/WebCore/bridge/qt/
qt_pixmapruntime.cpp 105 RefPtr<HTMLImageElement> image = new HTMLImageElement(HTMLNames::imgTag, document); local
106 image->setCachedImage(new CachedImage(img.get()));
108 return asObject(toJS(exec, global, image.release()));
120 QImage image; local
121 // for getting the data url, we always prefer the image.
123 image = v.value<QPixmap>().toImage();
124 v = QVariant::fromValue<QImage>(image);
126 image = v.value<QImage>();
129 image.save(&b, "PNG");
130 const QString b64 = QString("data:image/png;base64,") + ba.toBase64()
    [all...]
  /external/skia/src/gl/
SkGLTextCache.cpp 73 const uint8_t image[], int* offset) {
101 image);
171 const uint8_t image[], int* offset) {
172 SkASSERT(image != NULL);
187 strike = strike->addGlyphAndBind(glyph, image, offset);
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 108 void CheckFreeExtension(SavedImage* Image) {
109 if (Image->ExtensionBlocks) {
110 FreeExtension(Image);
116 const ColorMapObject* cmap = gif->Image.ColorMap;
134 static int find_transpIndex(const SavedImage& image, int colorCount) {
136 for (int i = 0; i < image.ExtensionBlockCount; ++i) {
137 const ExtensionBlock* eb = image.ExtensionBlocks + i;
206 SavedImage* image = &gif->SavedImages[gif->ImageCount-1];
207 const GifImageDesc& desc = image->ImageDesc;
281 if (gif->Image.Interlace
    [all...]
SkMovie_gif.cpp 66 static SkMSec savedimage_duration(const SavedImage* image)
68 for (int j = 0; j < image->ExtensionBlockCount; j++)
70 if (image->ExtensionBlocks[j].Function == GRAPHICS_EXT_FUNC_CODE)
72 int size = image->ExtensionBlocks[j].ByteCount;
74 const uint8_t* b = (const uint8_t*)image->ExtensionBlocks[j].Bytes;
123 // should we check for the Image cmap or the global (SColorMap) first?
126 cmap = gif->Image.ColorMap;
180 if (gif->Image.Interlace) {
  /external/webkit/WebCore/svg/graphics/
SVGImage.cpp 60 SVGImageChromeClient(SVGImage* image)
61 : m_image(image)
65 SVGImage* image() const { return m_image; } function in class:WebCore::SVGImageChromeClient
83 : Image(observer)
99 ASSERT(!m_chromeClient || !m_chromeClient->image());
216 if (!m_frameCache) // failed to allocate image
220 return m_frameCache->image()->nativeImageForCurrentFrame();
225 // Don't do anything if is an empty image.
261 loader->setResponseMIMEType("image/svg+xml");

Completed in 436 milliseconds

1 2 3 4 5 6 78 91011>>