HomeSort by relevance Sort by last modified time
    Searched refs:image (Results 376 - 400 of 1402) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/chromium/
ClipboardChromium.cpp 42 #include "Image.h"
158 void ClipboardChromium::setDragImage(CachedImage* image, Node* node, const IntPoint& loc)
165 m_dragImage = image;
192 result = createDragImageFromImage(m_dragImage->image());
204 // Copy over attributes. If we are dragging an image, we expect things like
233 RenderImage* image = toRenderImage(renderer);
234 if (image->cachedImage() && !image->cachedImage()->errorOccurred())
235 return image->cachedImage();
243 // Shove image data into a DataObject for use as a fil
    [all...]
  /external/webkit/Source/WebCore/platform/win/
PasteboardWin.cpp 36 #include "Image.h"
216 Image* image = cachedImage->image();
217 ASSERT(image);
224 OwnPtr<HBITMAP> resultBitmap(CreateCompatibleBitmap(dc, image->width(), image->height()));
227 BitmapInfo bmInfo = BitmapInfo::create(image->size());
231 image->getHBITMAP(coreBitmap);
233 BitBlt(compatibleDC, 0, 0, image->width(), image->height(), sourceDC, 0, 0, SRCCOPY)
    [all...]
  /cts/apps/CtsVerifier/jni/cameraanalyzer/
com_android_cts_verifier_camera_analyzer_MeteringTest.cpp 53 TestingImage *image = (TestingImage*) imageAddress; local
62 testHandler->addDataToList(image->getColorChecker(3, 4, 0, 6,
66 delete image;
  /external/chromium/chrome/browser/chromeos/options/
take_photo_dialog.cc 65 const SkBitmap& image = take_photo_view_->GetImage(); local
66 user_manager->SetLoggedInUserImage(image);
67 user_manager->SaveUserImage(user.email(), image);
  /external/chromium/chrome/browser/extensions/
extension_icon_manager.cc 53 // synchronously if the image is already cached.
81 void ExtensionIconManager::OnImageLoaded(SkBitmap* image,
84 if (!image)
95 icons_[extension_id] = ApplyTransforms(*image);
extension_icon_manager.h 37 virtual void OnImageLoaded(SkBitmap* image, const ExtensionResource& resource,
  /external/chromium/chrome/browser/sidebar/
sidebar_container.cc 121 void SidebarContainer::OnImageLoaded(SkBitmap* image,
124 if (image && use_default_icon_) {
125 *icon_ = *image;
  /external/chromium/chrome/browser/ui/views/status_icons/
status_icon_win.cc 35 void StatusIconWin::SetImage(const SkBitmap& image) {
40 icon_.Set(IconUtil::CreateHICONFromSkBitmap(image));
44 LOG(WARNING) << "Error setting status tray icon image";
56 // If we have an image, then set the NIF_ICON flag, which tells
57 // Shell_NotifyIcon() to set the image for the status icon it creates.
66 void StatusIconWin::SetPressedImage(const SkBitmap& image) {
  /external/chromium/chrome/browser/web_applications/
web_app.cc 102 // Calculates image checksum using MD5.
103 void GetImageCheckSum(const SkBitmap& image, MD5Digest* digest) {
106 SkAutoLockPixels image_lock(image);
107 MD5Sum(image.getPixels(), image.getSize(), digest);
110 // Saves |image| as an |icon_file| with the checksum.
111 bool SaveIconWithCheckSum(const FilePath& icon_file, const SkBitmap& image) {
112 if (!IconUtil::CreateIconFileFromSkBitmap(image, icon_file))
116 GetImageCheckSum(image, &digest);
124 // Returns true if |icon_file| is missing or different from |image|
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
LU.h 38 MatrixType::RowsAtCompileTime, // the image is a subspace of the destination space, whose dimension is the number
40 Dynamic, // we don't know at compile time the dimension of the image (the rank)
42 MatrixType::MaxRowsAtCompileTime, // the image matrix will consist of columns from the original matrix,
73 *result = static_cast<const Base*>(this)->image(m_originalMatrix);
76 const ImageResultType image() const function in class:Eigen::LU
78 return static_cast<const Base*>(this)->image(m_originalMatrix);
  /external/webkit/Source/WebCore/html/
HTMLPlugInImageElement.cpp 29 #include "Image.h"
66 return Image::supportsType(m_serviceType);
117 RenderImage* image = new (arena) RenderImage(this); local
118 image->setImageResource(RenderImageResource::create());
119 return image;
  /external/webkit/Source/WebCore/platform/graphics/win/
ImageCGWin.cpp 27 #include "Image.h"
93 CGImageRef image = frameAtIndex(i); local
94 if (CGImageGetHeight(image) == static_cast<size_t>(srcSize.height()) && CGImageGetWidth(image) == static_cast<size_t>(srcSize.width())) {
103 // No image of the correct size was found, fallback to drawing the current frame
  /external/webkit/Source/WebKit/mac/Misc/
WebNSViewExtras.m 165 NSImage *image = [element image];
166 if (image != nil && [image size].height * [image size].width <= WebMaxOriginalImageArea) {
170 dragImage = [[image copy] autorelease];
179 // Properly orient the drag image and orient it differently if it's smaller than the original
185 // There's no way to get the MIME type for the image from a DOM element.
186 // The old code used WKGetPreferredExtensionForMIMEType([image MIMEType]);
193 // This is the offset from the lower left corner of the image to the mouse location. Because w
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/qt/
TiledDrawingAreaTileQt.cpp 122 QImage image(updateChunk->createImage());
129 // Make a deep copy of the image since it's in shared memory.
130 m_backBuffer = QPixmap::fromImage(image.copy());
136 painter.drawImage(QPoint(drawPoint.width(), drawPoint.height()), image); local
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebDragClientWin.cpp 62 void WebDragClient::startDrag(DragImageRef image, const IntPoint& imageOrigin, const IntPoint& dragPoint, Clipboard* clipboard, Frame* frame, bool isLink)
72 GetDIBits(bitmapDC.get(), image, 0, 0, 0, &bitmapInfo, DIB_RGB_COLORS);
79 GetDIBits(bitmapDC.get(), image, 0, bitmapInfo.bmiHeader.biHeight, memoryBuffer->data(), &bitmapInfo, DIB_RGB_COLORS);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextGammaActivity.java 55 ImageView image = new ImageView(TextGammaActivity.this);
56 image.setImageBitmap(b);
58 layout.addView(image, new LinearLayout.LayoutParams(
  /packages/apps/Browser/src/com/android/browser/
NavTabView.java 113 Bitmap image = tab.getScreenshot(); local
114 if (image != null) {
115 mImage.setImageBitmap(image);
  /development/ide/xcode/ports/
SkBitmap_Mac.cpp 126 CGImageRef image = bitmap2imageref(bm); local
127 if (image) {
133 CGContextDrawImage(cg, rect, image);
134 CGImageRelease(image);
  /external/chromium/chrome/browser/chromeos/login/
take_photo_view.h 44 // Updates image from camera.
56 // Returns the currently selected image.
59 // Sets the image indicating that the view is used only for image preview.
60 void SetImage(SkBitmap* image);
user_image_downloader.h 20 // Gets user image URL from user's Google Profile, downloads the image,
21 // executes image decode and calls UserManager to store image in a file with
48 // Parses received JSON data looking for user image url.
53 // Searches for image url in a list of contacts matching contact address
54 // with user email. Returns true and image url if succeeds, false
62 // Searches for image url in list of links for the found contact.
63 // Returns true and image url if succeeds, false otherwise.
66 // Encodes user image in PNG format and saves the result to the fil
    [all...]
user_image_view.h 23 // View used for selecting user image on OOBE screen.
40 // Called if user accepts the taken photo. The image is passed as a
42 virtual void OnPhotoTaken(const SkBitmap& image) = 0;
44 // Called if user accepts the chosen default image. The image index is
55 // Updates image from camera.
user_view.h 52 // to show image with transparent areas.
59 // Sets the user's image. If image's size is less than
60 // 75% of window size, image size is preserved to avoid blur. Otherwise,
61 // the image is resized to fit window size precisely. Image view repaints
63 void SetImage(const SkBitmap& image, const SkBitmap& image_hot);
65 // Sets tooltip over the image.
  /external/chromium/chrome/browser/
favicon_helper.h 83 // Initiates loading an image from given |image_url|. Returns a download id
86 // whether the download succeeds and a SkBitmap as the downloaded image.
88 // downloaded image is not resized to the given image_size. If 0 is passed,
89 // the first frame of the image is returned.
165 const SkBitmap& image);
190 // Sets the image data for the favicon. This is invoked asynchronously after
194 const SkBitmap& image,
197 // Converts the FAVICON's image data to an SkBitmap and sets it on the
203 void UpdateFavicon(NavigationEntry* entry, const SkBitmap& image);
205 // Scales the image such that either the width and/or height is 16 pixel
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
speech_input_window_controller.h 55 // Sets the image to be displayed in the bubble's status ImageView. A future
56 // call to updateLayout may change the image.
59 - (void)setImage:(NSImage*)image;
  /external/chromium/chrome/browser/ui/gtk/
edit_search_engine_dialog.h 42 // Updates the tooltip and image of the image view based on is_valid. If
43 // is_valid is false the tooltip of the image view is set to the message with
45 void UpdateImage(GtkWidget* image, bool is_valid, int invalid_message_id);

Completed in 1736 milliseconds

<<11121314151617181920>>