/external/opencv/cxcore/src/ |
cximage.cpp | 44 // C++ classes for image and matrices 98 CV_ERROR( CV_StsUnsupportedFormat, "The object is neither an image, nor a matrix" ); 135 "Loading an image stored in such a format requires HigGUI.\n" 187 if( !image ) 190 cvSave( filename, image, imgname ); 194 save_image( filename, image ); 197 "Saving an image in such a format requires HigGUI.\n" 207 if( image ) 208 cvWrite( fs, imgname, image ); 249 CV_ERROR( CV_StsUnsupportedFormat, "The object is neither an image, nor a matrix" ) [all...] |
/external/skia/legacy/src/images/ |
SkImageDecoder_libgif.cpp | 100 void CheckFreeExtension(SavedImage* Image) { 101 if (Image->ExtensionBlocks) { 102 FreeExtension(Image); 108 const ColorMapObject* cmap = gif->Image.ColorMap; 126 static int find_transpIndex(const SavedImage& image, int colorCount) { 128 for (int i = 0; i < image.ExtensionBlockCount; ++i) { 129 const ExtensionBlock* eb = image.ExtensionBlocks + i; 206 SavedImage* image = &gif->SavedImages[gif->ImageCount-1]; local 207 const GifImageDesc& desc = image->ImageDesc; 281 if (gif->Image.Interlace [all...] |
/external/webkit/Source/WebCore/platform/graphics/qt/ |
ImageQt.cpp | 33 #include "Image.h" 96 // Image Class 99 PassRefPtr<Image> Image::loadPlatformResource(const char* name) 104 void Image::drawPattern(GraphicsContext* ctxt, const FloatRect& tileRect, const AffineTransform& patternTransform, 108 if (!framePixmap) // If it's too early we won't have an image yet. 164 : Image(observer) 215 QPixmap* image = nativeImageForCurrentFrame(); 216 if (!image) 225 ctxt->setCompositeOperation(!image->hasAlpha() && op == CompositeSourceOver ? CompositeCopy : op) [all...] |
/external/webkit/Source/WebCore/platform/graphics/texmap/ |
GraphicsLayerTextureMapper.cpp | 314 void GraphicsLayerTextureMapper::setContentsToImage(Image* image) 317 m_pendingContent.contentType = image ? TextureMapperNode::DirectImageContentType : TextureMapperNode::HTMLContentType; 318 m_pendingContent.image = image; 319 GraphicsLayer::setContentsToImage(image);
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebDragClient.cpp | 111 void WebDragClient::startDrag(DragImageRef image, const IntPoint& imageOrigin, const IntPoint& dragPoint, Clipboard* clipboard, Frame* frame, bool isLink) 125 if (source && (image || dataObject)) { 126 if (image) { 130 GetObject(image, sizeof(BITMAP), &b); 135 sdi.hbmpDragImage = image;
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/ |
h264bsdWriteMacroblock.s | 25 image RN 0 label 74 ; Write one macroblock into the image. Both luma and chroma 82 ; image pointer to the image where the macroblock will be written 93 LDR width, [image, #4] 94 LDR luma, [image, #0xC] 95 LDR cb, [image, #0x10] 96 LDR cr, [image, #0x14]
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/ |
h264bsdWriteMacroblock.S | 27 #define image r0 define 76 Write one macroblock into the image. Both luma and chroma 84 image pointer to the image where the macroblock will be written 95 LDR width, [image, #4] 96 LDR luma, [image, #0xC] 97 LDR cb, [image, #0x10] 98 LDR cr, [image, #0x14]
|
/external/webkit/Source/WebCore/platform/win/ |
ClipboardWin.cpp | 42 #include "Image.h" 254 static HGLOBAL createGlobalImageFileDescriptor(const String& url, const String& title, CachedImage* image) 256 ASSERT_ARG(image, image); 257 ASSERT(image->image()->data()); 270 fgd->fgd[0].nFileSizeLow = image->image()->data()->size(); 272 const String& preferredTitle = title.isEmpty() ? image->response().suggestedFilename() : title; 273 String extension = image->image()->filenameExtension() [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_tab_helper.cc | 156 void ExtensionTabHelper::OnImageLoaded(SkBitmap* image, 159 if (image) { 160 extension_app_icon_ = *image;
|
image_loading_tracker_unittest.cc | 31 virtual void OnImageLoaded(SkBitmap* image, const ExtensionResource& resource, 36 if (image) 37 image_ = *image; 113 // The image isn't cached, so we should not have received notification. 118 // We should have gotten the image. 121 // Check that the image was loaded. 124 // The image should be cached in the Extension. 127 // Make sure the image is in the extension. 131 // Ask the tracker for the image again, this should call us back immediately. 136 // We should have gotten the image [all...] |
extension_icon_manager_unittest.cc | 53 // The number of observed image loads that have not been waited for. 56 // Whether we are currently waiting for an image load. 76 // image load was observed. 77 virtual void OnImageLoaded(SkBitmap* image, const ExtensionResource& resource, 79 ExtensionIconManager::OnImageLoaded(image, resource, index);
|
/external/chromium/chrome/browser/ui/gtk/ |
sad_tab_gtk.cc | 73 // Add center-aligned image. 74 GtkWidget* image = gtk_image_new_from_pixbuf( local 78 gtk_misc_set_alignment(GTK_MISC(image), 0.5, 0.5); 79 gtk_box_pack_start(GTK_BOX(vbox), image, FALSE, FALSE, 0); local 81 // Add spacer between image and title.
|
custom_button.h | 43 // Flip the image horizontally. Not to be used for RTL/LTR reasons. (In RTL 44 // mode, this will unflip the image.) 57 void SetBackground(SkColor color, SkBitmap* image, SkBitmap* mask); 72 // The background image. 78 // We need to remember the image ids that the user passes in and the theme 161 // Flip the image horizontally. Not to be used for RTL/LTR reasons. (In RTL 162 // mode, this will unflip the image.) 185 void SetBackground(SkColor color, SkBitmap* image, SkBitmap* mask);
|
/external/opencv/cxcore/include/ |
cvwimage.h | 43 // Image class which provides a thin layer around an IplImage. The goals 48 // 4. Can easily treat external data as an image 53 // The WImage class is the image class which provides the data accessors. 71 // WImageBuffer3_b im(5,7); // Make a 5X7 3 channel image of type uchar 74 // WImageView1_f user_im(&vec[0], 2, 5); // 2X5 image w/ supplied data 97 // Functions that are not part of the basic image allocation, viewing, and 228 // Copy the contents from another image which is just a convenience to cvCopy 234 // Construct a view into a region of this image 246 void SetIpl(IplImage* image) { 247 assert(!image || image->depth == Depth()) 341 IplImage* image = WImage<T>::image_; local 398 IplImage* image = WImage<T>::image_; local [all...] |
/external/oprofile/libpp/ |
populate_for_spu.cpp | 41 * interpreted as the offset of an SPU image embedded in the containing file, 42 * so the filename to do the check_mtime on is the containing file, ip.image; 44 * file of the SPU image, abfd->filename. 69 ip.image, 73 fname_to_check = ip.image; 75 abfd = new op_bfd(ip.image,
|
/external/qemu/android/skin/ |
file.c | 43 if (background->image) 44 skin_image_unref(&background->image); 52 const char* img = aconfig_str(node, "image", NULL); 61 background->image = skin_image_find_in( basepath, img ); 62 if (background->image == SKIN_IMAGE_NONE) { 63 background->image = NULL; 69 background->rect.size.w = skin_image_w( background->image ); 70 background->rect.size.h = skin_image_h( background->image ); 224 skin_image_unref( &button->image ); 235 const char* img = aconfig_str(node, "image", NULL) [all...] |
/external/webkit/Source/WebCore/platform/qt/ |
CursorQt.cpp | 35 #include "Image.h" 76 static QCursor* createCustomCursor(Image* image, const IntPoint& hotSpot) 78 IntPoint effectiveHotSpot = determineHotSpot(image, hotSpot); 79 return new QCursor(*(image->nativeImageForCurrentFrame()), effectiveHotSpot.x(), effectiveHotSpot.y());
|
/external/chromium/chrome/browser/chromeos/login/ |
user_view.cc | 39 // Padding between remove button and top right image corner. 66 // The view that shows the Sign out button below the user's image. 163 // On first click transform image to "remove" label. 221 void SetImage(const SkBitmap& image, const SkBitmap& image_hot) { 222 image_ = image; 295 void UserView::SetImage(const SkBitmap& image, const SkBitmap& image_hot) { 296 int desired_size = std::min(image.width(), image.height()); 301 image_view_->SetImage(image, image_hot);
|
user_image_loader.cc | 65 // Auto crop the image, taking the largest square in the center. 66 // Also make the image smaller to save space and memory. 91 void UserImageLoader::NotifyDelegate(const SkBitmap& image, 95 image,
|
/external/chromium/chrome/browser/speech/ |
speech_input_bubble_views.cc | 45 const SkBitmap& image); 46 void SetImage(const SkBitmap& image); 118 const SkBitmap& image) { 131 SetImage(image); 144 void ContentView::SetImage(const SkBitmap& image) { 145 icon_->SetImage(image);
|
/external/webkit/Source/WebCore/platform/ |
Cursor.cpp | 29 #include "Image.h" 33 IntPoint determineHotSpot(Image* image, const IntPoint& specifiedHotSpot) 36 IntRect imageRect = image->rect(); 40 // If hot spot is not specified externally, it can be extracted from some image formats (e.g. .cur). 42 bool imageHasIntrinsicHotSpot = image->getHotSpot(intrinsicHotSpot); 242 Cursor::Cursor(Image* image, const IntPoint& hotSpot) 244 , m_image(image) 245 , m_hotSpot(determineHotSpot(image, hotSpot) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
CropDrawingUtils.java | 155 public static boolean setImageToScreenMatrix(Matrix dst, RectF image, 158 dst.setRotate(rotation, image.centerX(), image.centerY()); 159 if (!dst.mapRect(rotatedImage, image)) { 164 boolean rot = dst.preRotate(rotation, image.centerX(), image.centerY());
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
Thumbnail.java | 156 Media image = getLastImageThumbnail(resolver); local 158 if (image == null && video == null) return null; 162 // If there is only image or video, get its thumbnail. If both exist, 164 if (image != null && (video == null || image.dateTaken >= video.dateTaken)) { 165 bitmap = Images.Thumbnails.getThumbnail(resolver, image.id, 167 lastMedia = image; 201 String selection = ImageColumns.MIME_TYPE + "='image/jpeg' AND " +
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
BinPacker.java | 23 import java.awt.image.BufferedImage; 301 BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB); local 302 Graphics2D g = image.createGraphics(); 304 g.fillRect(0, 0, image.getWidth(), image.getHeight()); 344 ImageIO.write(image, "PNG", file); 345 System.out.println("Wrote diagnostics image " + file);
|
/external/chromium/chrome/browser/resources/ntp4/ |
recently_closed.css | 43 background-image: url('../ntp/closed_window.png');
|