HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 526 - 550 of 979) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/resources/image_loader/
request.js 8 * Creates and starts downloading and then resizing of the image. Finally,
9 * returns the image using the callback.
43 * Temporary image used to download images.
44 * @type {Image}
47 this.image_ = new Image();
50 * MIME type of the fetched image.
64 * Temporary canvas used to resize and compress the image.
103 * Tries to load the image from cache if exists and sends the response.
118 * Tries to download the image, resizes and sends the response.
131 * Fetches the image from the persistent cache
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_bookmarks_sync_test.cc 177 // SkBitmap (or any other image format) then encoded back to PNG on the path
179 gfx::Image original_favicon = Create1xFaviconFromPNGFile(
190 gfx::Image final_favicon = GetBookmarkModel(0)->GetFavicon(bookmark);
  /external/chromium_org/chrome/browser/thumbnails/
thumbnail_tab_helper.cc 59 gfx::Image image = gfx::Image::CreateFrom1xBitmap(thumbnail); local
60 context.service->SetPageThumbnail(context, image);
  /external/chromium_org/chrome/browser/ui/autofill/
generated_credit_card_bubble_controller.cc 102 gfx::Image GeneratedCreditCardBubbleController::AnchorIcon() const {
104 return gfx::Image();
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_sub_menu_model_gtk.cc 90 SetIcon(GetItemCount() - 1, gfx::Image(node_icon));
110 const gfx::Image& folder_icon = rb.GetImageNamed(IDR_BOOKMARK_BAR_FOLDER);
  /external/chromium_org/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.h 23 #include "ui/gfx/image/cairo_cached_surface.h"
28 class Image;
97 // The current index into the Animation image strip.
320 const gfx::Image& tab_bg,
426 // tabstrip and plumbed here to offset the theme image by the size of the
  /external/chromium_org/chrome/browser/ui/panels/
panel_host.cc 32 #include "ui/gfx/image/image.h"
80 gfx::Image PanelHost::GetPageIcon() const {
82 return gfx::Image();
  /external/chromium_org/chrome/browser/ui/views/download/
download_item_view.h 42 class Image;
71 void OnExtractIconComplete(gfx::Image* icon);
128 // The image set associated with the part containing the icon and text.
141 // The image set associated with the drop-down button on the right.
  /external/chromium_org/chrome/browser/ui/views/website_settings/
permission_selector_view.cc 13 #include "ui/gfx/image/image.h"
191 const gfx::Image& image = WebsiteSettingsUI::GetPermissionIcon(type, setting); local
192 icon_->SetImage(image.ToImageSkia());
249 const gfx::Image& image = WebsiteSettingsUI::GetPermissionIcon( local
251 icon_->SetImage(image.ToImageSkia());
  /external/chromium_org/chrome/browser/ui/webui/ntp/
ntp_login_handler.cc 48 #include "ui/gfx/image/image.h"
56 SkBitmap GetGAIAPictureForNTP(const gfx::Image& image) {
60 SkBitmap bmp = skia::ImageOperations::Resize(*image.ToSkBitmap(),
222 const gfx::Image* image = local
224 if (image)
225 icon_url = webui::GetBitmapDataUrl(GetGAIAPictureForNTP(*image));
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_items.h 26 class Image;
84 // Gets an image to display for this instrument.
85 const gfx::Image& CardIcon() const;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DragImage.cpp 38 #include "core/platform/graphics/Image.h"
71 PassOwnPtr<DragImage> DragImage::create(Image* image, RespectImageOrientationEnum shouldRespectImageOrientation)
73 if (!image)
76 RefPtr<NativeImageSkia> bitmap = image->nativeImageForCurrentFrame();
80 if (image->isBitmapImage()) {
82 BitmapImage* bitmapImage = static_cast<BitmapImage*>(image);
141 // First step is drawing the link drag image width.
165 // We now know how big the image needs to be, so we create and
195 RefPtr<Image> image = buffer->copyImage() local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
FEBlend.cpp 224 RefPtr<Image> foreground = in->asImageBuffer()->copyImage(DontCopyBackingStore);
225 RefPtr<Image> background = in2->asImageBuffer()->copyImage(DontCopyBackingStore);
FEDisplacementMap.cpp 98 // Spec: The 'color-interpolation-filters' property only applies to the 'in2' source image
99 // and does not apply to the 'in' source image. The 'in' source image must remain in its
101 // The result is in that smae color space because it is a displacement of the 'in' image.
192 RefPtr<Image> color = in->asImageBuffer()->copyImage(DontCopyBackingStore);
193 RefPtr<Image> displ = in2->asImageBuffer()->copyImage(DontCopyBackingStore);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
fbobject.h 74 /** Return the texture image for a renderbuffer attachment */
79 return att->Texture->Image[att->CubeMapFace][att->TextureLevel];
83 /** Return the (const) texture image for a renderbuffer attachment */
88 return att->Texture->Image[att->CubeMapFace][att->TextureLevel];
152 _mesa_EGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
LineGraph.java 17 import org.eclipse.swt.graphics.Image;
67 public void paint(Image im) {
  /external/giflib/
gif_lib.h 47 GifWord Left, Top, Width, Height; /* Current image dimensions. */
66 int ExtensionBlockCount; /* Count of extensions before image */
67 ExtensionBlock *ExtensionBlocks; /* Extensions before image */
76 int ImageCount; /* Number of current image (both APIs) */
77 GifImageDesc Image; /* Current image (low-level API) */
78 SavedImage *SavedImages; /* Image sequence (high-level API) */
79 int ExtensionBlockCount; /* Count extensions past last image */
80 ExtensionBlock *ExtensionBlocks; /* Extensions past last image */
111 #define DISPOSE_DO_NOT 1 /* Leave image in place *
    [all...]
  /external/mesa3d/src/mesa/main/
fbobject.h 74 /** Return the texture image for a renderbuffer attachment */
79 return att->Texture->Image[att->CubeMapFace][att->TextureLevel];
83 /** Return the (const) texture image for a renderbuffer attachment */
88 return att->Texture->Image[att->CubeMapFace][att->TextureLevel];
152 _mesa_EGLImageTargetRenderbufferStorageOES(GLenum target, GLeglImageOES image);
  /external/opencv/cvaux/src/
_cvfacedetection.h 224 virtual void Show(IplImage * /*Image*/){};
225 virtual void ShowIdeal(IplImage* /*Image*/){};
288 virtual void Show(IplImage* Image);
289 virtual void ShowIdeal(IplImage* Image);
  /frameworks/base/libs/hwui/
Android.mk 25 Image.cpp \
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchQuickFixProcessor.java 36 import org.eclipse.swt.graphics.Image;
210 public Image getImage() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAttribute.java 39 import org.eclipse.swt.graphics.Image;
103 public Image getImage() {
LintFix.java 47 import org.eclipse.swt.graphics.Image;
135 public Image getImage() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringProposal.java 33 import org.eclipse.swt.graphics.Image;
172 public Image getImage() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SampleSelectionPage.java 39 import org.eclipse.swt.graphics.Image;
123 public Image getImage(Object element) {

Completed in 845 milliseconds

<<21222324252627282930>>