HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 151 - 175 of 1119) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
ImUtil.h 29 register XImage *image);
  /sdk/chimpchat/src/com/android/chimpchat/adb/image/
SixteenBitColorModel.java 16 package com.android.chimpchat.adb.image;
22 import java.awt.image.ColorModel;
23 import java.awt.image.DataBuffer;
24 import java.awt.image.Raster;
  /sdk/chimpchat/src/com/android/chimpchat/core/
ChimpImageBase.java 19 import java.awt.image.BufferedImage;
52 * @return the BufferedImage for this image.
98 BufferedImage image = convertSnapshot(); local
107 writer.write(image);
120 BufferedImage image = getBufferedImage(); local
121 return image.getRGB(x, y);
125 BufferedImage image = getBufferedImage(); local
127 // Convert the image to ARGB so ImageIO writes it out nicely
128 BufferedImage argb = new BufferedImage(image.getWidth(), image.getHeight()
182 private final BufferedImage image; field in class:ChimpImageBase.BufferedImageChimpImage
216 BufferedImage image = getBufferedImage(); local
    [all...]
  /external/chromium/chrome/browser/webdata/
web_apps_table.cc 28 "image BLOB, UNIQUE (url, width, height))")) {
52 bool WebAppsTable::SetWebAppImage(const GURL& url, const SkBitmap& image) {
57 "(url, width, height, image) VALUES (?, ?, ?, ?)"));
62 gfx::PNGCodec::EncodeBGRASkBitmap(image, false, &image_data);
65 s.BindInt(1, image.width());
66 s.BindInt(2, image.height());
74 "SELECT image FROM web_app_icons WHERE url=?"));
81 SkBitmap image; local
86 col_bytes, &image)) {
87 images->push_back(image);
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.c 47 struct opd_image * image; local
75 image = opd_get_image(cp, image_name, 0, proc->tid, proc->tgid);
76 if (!image)
79 opd_add_mapping(proc, image, start, offset, end);
117 verbprintf(vmisc, "image name %s for pid %u %u\n", image_name, proc->tid, proc->tgid);
128 /* dae assume than the first map added is the primary image name, this
130 * the primary image name
134 if (!strcmp(map->image->name, image_name)) {
136 fprintf(stderr, "swap map for image %s from %s to %s\n", image_name, proc->name, map->image->name)
152 struct opd_image * image = opd_get_image(image_name, local
    [all...]
opd_kernel.c 32 struct opd_image * image; member in struct:opd_module
84 module->image = NULL;
137 * to this file which allows determination of the module image
143 * Currently the image file "objectfile" is stored, and details of
229 mod->image = opd_get_kernel_image(filename, NULL, 0, 0);
230 mod->image->ref_count++;
319 * caller must check than the module image is valid
366 if (module->image != NULL) {
368 opd_put_image_sample(module->image,
372 verbprintf(vmodule, "No image for sampled module %s\n"
414 struct opd_image * image; local
    [all...]
  /external/skia/src/ports/
SkImageDecoder_CG.cpp 59 CGImageRef image = CGImageSourceCreateImageAtIndex(imageSrc, 0, NULL); local
60 if (NULL == image) {
63 SkAutoTCallVProc<CGImage, CGImageRelease> arimage(image);
65 const int width = CGImageGetWidth(image);
66 const int height = CGImageGetHeight(image);
82 CGContextDrawImage(cg, CGRectMake(0, 0, width, height), image);
168 CGImageRef image = SkCreateCGImageRef(bm); local
169 if (NULL == image) {
172 SkAutoTCallVProc<CGImage, CGImageRelease> agimage(image);
174 CGImageDestinationAddImage(dst, image, NULL)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImageList.java 60 // TODO: We need to clear the cache because we may "reopen" the image
61 // list. After we implement the image list state, we can remove this
84 // does our uri already have an id (single image query)?
133 public boolean removeImage(IImage image) {
135 if (mContentResolver.delete(image.fullSizeImageUri(), null, null) > 0) {
136 ((BaseImage) image).onRemove();
175 // Sometimes, the URI of an image contains a query string with key
176 // "bucketId" inorder to restore the image list. However, the query
203 BaseImage image = mCache.get(i); local
204 if (image == null)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageAndroid.cpp 30 #include "Image.h"
77 : Image(observer)
194 SkBitmapRef* image = this->nativeImageForCurrentFrame(); local
195 if (!image) { // If it's too early we won't have an image yet.
200 const SkBitmap& bitmap = image->bitmap();
212 float invScaleX = (float)bitmap.width() / image->origWidth();
213 float invScaleY = (float)bitmap.height() / image->origHeight();
235 if (bitmap.width() != image->origWidth() ||
236 bitmap.height() != image->origHeight())
256 SkBitmapRef* image = this->nativeImageForCurrentFrame(); local
    [all...]
  /external/oprofile/libpp/
locate_images.cpp 133 string image = op_realpath(archive_path + image_name); local
134 if (op_file_readable(image)) {
136 return fixup ? image : image_name;
150 string image = op_realpath(root_path + image_name); local
151 if (op_file_readable(image)) {
153 return fixup ? image : image_name;
166 string const image = locate_image(image_name, error, fixup); local
168 return image;
170 string const base = op_basename(image);
190 // library in the image path. Choose the first one found instead of issuing
    [all...]
  /bootable/diskinstaller/
config.mk 64 # Build the installer ramdisk image
85 @echo ----- Making installer image ------
114 # Now the installer boot image which includes the kernel and the ramdisk
133 $(call pretty,"Target installer image: $@")
137 # Now make a data image that contains all the target image files for the
163 @echo --- Making installer data image ------
174 @echo --- Finished installer data image -[ $@ ]-
177 # now combine the installer image with the grub bootloader
189 @echo "Creating bootable installer image: $@
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
AddressListParser.jj 431 if (t.image.charAt(t.image.length() - 1) != '.' || t.kind == AddressListParserConstants.QUOTEDSTRING)
458 if (t.image.charAt(t.image.length() - 1) != '.')
513 < <QUOTEDPAIR>> { image.deleteCharAt(image.length() - 2); }
520 < DOMAINLITERAL: "]" > { matchedToken.image = image.toString(); }: DEFAULT
542 < <QUOTEDPAIR>> { image.deleteCharAt(image.length() - 2); }
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParserTokenManager.java 631 StringBuffer image; field in class:ContentTypeParserTokenManager
676 t.image = (im == null) ? input_stream.GetImage() : im;
712 image = null;
811 if (image == null)
812 image = new StringBuffer();
813 image.append(input_stream.GetSuffix(jjimageLen));
815 image.deleteCharAt(image.length() - 2);
818 if (image == null)
819 image = new StringBuffer()
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp 65 // Image Class
69 : Image(observer)
110 CGImageRef image = frameAtIndex(0); local
112 // Currently we only check for solid color in the important special case of a 1x1 image.
113 if (image && CGImageGetWidth(image) == 1 && CGImageGetHeight(image) == 1) {
121 CGContextDrawImage(bmap.get(), dst, image);
134 // If the image already has a (non-device) color space, we don't want to
174 RetainPtr<CGImageRef> image = frameAtIndex(m_currentFrame) local
256 CGImageRef image = (CGImageRef)info; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
CompressedTextureActivity.java 115 Buffer image = createImage(width, height); local
116 ETC1Util.ETC1Texture etc1Texture = ETC1Util.compressTexture(image, width, height, 3, 3 * width);
136 ByteBuffer image = ByteBuffer.allocateDirect(height * stride) local
146 image.position(stride*y+x*3);
147 image.put(red);
148 image.put(green);
149 image.put(blue);
152 image.position(0);
153 return image;
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
MessageData.java 24 import org.eclipse.swt.graphics.Image;
30 private Image image = null; // texture field in class:MessageData
83 public Image getImage() {
84 if (image != null)
85 return image;
93 return image = new Image(Display.getCurrent(), imageData);
98 return image = new Image(Display.getCurrent(), imageData)
    [all...]
  /external/skia/gpu/src/
GrAtlas.cpp 94 bool GrAtlas::addSubImage(int width, int height, const void* image,
111 memcpy(dst, image, width * bpp);
114 image = (const void*)((const char*)image + width * bpp);
117 image = storage.get();
120 fTexture->uploadTextureData(loc->fX, loc->fY, dstW, dstH, image);
158 int width, int height, const void* image,
163 if (atlas && atlas->addSubImage(width, height, image, loc)) {
192 if (!newAtlas->addSubImage(width, height, image, loc)) {
  /external/webkit/Source/WebCore/platform/gtk/
ClipboardGtk.cpp 27 #include "Image.h"
236 void ClipboardGtk::setDragImage(CachedImage* image, const IntPoint& location)
238 setDragImage(image, 0, location);
246 void ClipboardGtk::setDragImage(CachedImage* image, Node* element, const IntPoint& location)
253 m_dragImage = image;
267 return createDragImageFromImage(m_dragImage->image());
278 RenderImage* image = static_cast<RenderImage*>(renderer);
279 if (image->cachedImage() && !image->cachedImage()->errorOccurred())
280 return image->cachedImage()
290 CachedImage* image = getCachedImage(element); local
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_image.c 65 Write one macroblock into the image. Both luma and chroma
73 image pointer to the image where the macroblock will be written
80 void h264bsdWriteMacroblock(image_t *image, u8 *data)
93 ASSERT(image);
97 width = image->width;
101 lum = (u32*)image->luma;
102 cb = (u32*)image->cb;
103 cr = (u32*)image->cr;
151 Write one macroblock into the image. Prediction for the macrobloc
    [all...]
  /external/skia/src/utils/unix/
SkOSWindow_Unix.cpp 234 static bool convertBitmapToXImage(XImage& image, const SkBitmap& bitmap)
236 sk_bzero(&image, sizeof(image));
239 image.width = bitmap.width();
240 image.height = bitmap.height();
241 image.format = ZPixmap;
242 image.data = (char*) bitmap.getPixels();
243 image.byte_order = LSBFirst;
244 image.bitmap_unit = bitsPerPixel;
245 image.bitmap_bit_order = LSBFirst
260 XImage image; local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLImageElement.cpp 74 RefPtr<HTMLImageElement> image = adoptRef(new HTMLImageElement(imgTag, document)); local
76 image->setWidth(*optionalWidth);
78 image->setHeight(*optionalHeight);
79 return image.release();
186 RenderImage* image = new (arena) RenderImage(this);
187 image->setImageResource(RenderImageResource::create());
188 return image;
200 renderImageResource->setCachedImage(m_imageLoader.image());
202 // If we have no image at all because we have no src attribute, set
203 // image height and width for the alt text instead
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
user_manager.h 53 // The image for this user.
54 void set_image(const SkBitmap& image) { image_ = image; }
55 const SkBitmap& image() const { return image_; } function in class:chromeos::UserManager::User
96 // Sets image for logged-in user and sends LOGIN_USER_IMAGE_CHANGED
97 // notification about the image changed via NotificationService.
98 void SetLoggedInUserImage(const SkBitmap& image);
100 // Tries to load logged-in user image from disk and sets it for the user.
103 // Saves image to file and saves image path in local state preferences
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLImageElement.cpp 107 renderImageResource->setCachedImage(m_imageLoader.image());
109 // If we have no image at all because we have no src attribute, set
110 // image height and width for the alt text instead.
111 if (!m_imageLoader.image() && !imageObj->cachedImage())
118 RenderImage* image = new (arena) RenderImage(this); local
119 image->setImageResource(RenderImageResource::create());
120 return image;
126 // our loader may have not fetched the image, so do it now.
127 if (!m_imageLoader.image())
142 // image specified in the src parameter
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java 29 import java.awt.image.BufferedImage;
122 * @param image the bitmap content
129 public static Bitmap createBitmap(BufferedImage image, boolean isMutable,
131 // create a delegate with the given image.
132 Bitmap_Delegate delegate = new Bitmap_Delegate(image, Config.ARGB_8888);
204 // create the image
205 BufferedImage image = new BufferedImage(width, height, imageType); local
208 image.setRGB(0, 0, width, height, colors, offset, stride);
212 Bitmap_Delegate delegate = new Bitmap_Delegate(image, Config.nativeToConfig(nativeConfig));
231 // create the image
232 BufferedImage image = new BufferedImage(width, height, imageType); local
271 BufferedImage image = delegate.mImage; local
445 BufferedImage image = createCopy(bitmap.getImage(), BufferedImage.TYPE_INT_ARGB, alpha); local
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/icons/
ImageFactory.java 26 import org.eclipse.swt.graphics.Image;
36 * An utility class to serve {@link Image} correspond to the various icons
42 private final Map<String, Image> mImages = new HashMap<String, Image>();
49 * Loads an image given its filename (with its extension).
50 * Might return null if the image cannot be loaded.
51 * The image is cached. Successive calls will return the <em>same</em> object.
53 * @param imageName The filename (with extension) of the image to load.
54 * @return A new or existing {@link Image}. The caller must NOT dispose the image (the
60 Image image = mImages.get(imageName); local
    [all...]

Completed in 1550 milliseconds

1 2 3 4 5 67 8 91011>>