HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 201 - 225 of 1058) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/chrome/browser/
icon_manager.cc 19 gfx::Image* image) {
22 callback.Run(image);
40 gfx::Image* IconManager::LookupIconFromFilepath(const base::FilePath& file_name,
49 gfx::Image* IconManager::LookupIconFromGroup(const IconGroupID& group,
88 gfx::Image* result = LookupIconFromGroup(group, rit->second.size);
97 IconLoader* loader, gfx::Image* result, const IconGroupID& group) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLCanvasElement.h 53 class Image;
122 Image* copiedImage() const;
150 virtual PassRefPtr<Image> getSourceImageForCanvas(SourceImageMode, SourceImageStatus*) const OVERRIDE;
213 mutable RefPtr<Image> m_presentedImage;
214 mutable RefPtr<Image> m_copiedImage; // FIXME: This is temporary for platforms that have to copy the image buffer to render (and for CSSCanvasValue).
  /external/chromium_org/third_party/WebKit/Source/platform/
Cursor.h 31 #include "platform/graphics/Image.h"
95 Cursor(Image*, const IntPoint& hotSpot);
97 // Hot spot is in image pixels.
98 Cursor(Image*, const IntPoint& hotSpot, float imageScaleFactor);
110 Image* image() const { return m_image.get(); } function in class:blink::Cursor
112 // Image scale in image pixels per logical (UI) pixel.
117 RefPtr<Image> m_image;
122 PLATFORM_EXPORT IntPoint determineHotSpot(Image*, const IntPoint& specifiedHotSpot)
    [all...]
  /external/deqp/modules/egl/
teglImageTests.cpp 21 * \brief EGL image tests.
63 namespace Image
438 // Create EGL image
440 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_TEXTURE_2D_KHR, (EGLClientBuffer)(deUintptr)tex, attribs), EGL_SUCCESS); local
441 if (image == EGL_NO_IMAGE_KHR)
449 // Destroy image
450 CHECK_EXT_CALL_RET(eglDestroyImageKHR(context.getEglDisplay(), image), (EGLBoolean)EGL_TRUE, EGL_SUCCESS);
487 // Create EGL image
489 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), m_target, (EGLClientBuffer)(deUintptr)tex, attribs), EGL_SUCCESS); local
490 if (image == EGL_NO_IMAGE_KHR
517 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_RENDERBUFFER_KHR, (EGLClientBuffer)(deUintptr)rbo, DE_NULL), EGL_SUCCESS); local
608 EGLImageKHR image = CHECK_EXT_CALL_ERR(eglCreateImageKHR(context.getEglDisplay(), context.getEglContext(), EGL_GL_TEXTURE_2D_KHR, (EGLClientBuffer)(deUintptr)srcTex, attribs), EGL_SUCCESS); local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CFlatButton.java 21 import org.eclipse.swt.graphics.Image;
50 private Image m_image;
96 // draw image
97 Image image = getImage();
98 if (image != null) {
99 Rectangle imageBounds = image.getBounds();
103 gc.drawImage(image, x, y);
149 public final Image getImage() {
153 public void setImage(Image image)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/
DesignerPlugin.java 21 import org.eclipse.swt.graphics.Image;
42 * like logging. For things like image loading, it has its own local code such that
43 * it can find its image resources locally instead of requiring the embedding plugin
80 for (Image image : sImageCache.values()) {
81 image.dispose();
204 private static Map<String, Image> sImageCache = Maps.newHashMap();
206 public static Image getImage(String path) {
207 Image image = sImageCache.get(path)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_action_icon_factory_unittest.cc 25 #include "ui/gfx/image/image_skia.h"
45 gfx::Image EnsureImageSize(const gfx::Image& original, int size) {
53 return gfx::Image::CreateFrom1xBitmap(resized);
64 gfx::Image LoadIcon(const std::string& filename) {
77 return gfx::Image::CreateFrom1xBitmap(bitmap);
200 gfx::Image icon = icon_factory.GetIcon(0);
221 gfx::Image set_icon = LoadIcon("browser_action/no_icon/icon.png");
231 gfx::Image icon = icon_factory.GetIcon(0);
259 gfx::Image default_icon
    [all...]
extension_uninstall_dialog.cc 22 #include "ui/gfx/image/image.h"
23 #include "ui/gfx/image/image_skia.h"
32 const gfx::ImageSkia& image = local
34 return image.GetRepresentation(
67 ExtensionResource image = IconsInfo::GetIconResource( local
70 // Load the image asynchronously. The response will be sent to OnImageLoaded.
73 SetIcon(gfx::Image());
76 image,
87 void ExtensionUninstallDialog::SetIcon(const gfx::Image& image)
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_avatar_icon_util.cc 21 #include "ui/gfx/image/canvas_image_source.h"
22 #include "ui/gfx/image/image.h"
23 #include "ui/gfx/image/image_skia_operations.h"
210 gfx::Image GetSizedAvatarIcon(const gfx::Image& image,
213 if (!is_rectangle && image.Height() <= height)
214 return image;
221 *image.ToImageSkia()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SwtUtils.java 28 import org.eclipse.swt.graphics.Image;
36 import java.awt.image.BufferedImage;
37 import java.awt.image.DataBuffer;
38 import java.awt.image.DataBufferByte;
39 import java.awt.image.DataBufferInt;
40 import java.awt.image.WritableRaster;
44 * Various generic SWT utilities such as image conversion.
81 * @return true if we can convert the given buffered image format
100 * @param image the image to be converte
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusheaders.h 5 * FontFamily, Image, InstalledFontCollection, PrivateFontCollection,
51 class Image: public GdiplusBase
60 static Image* FromFile(const WCHAR *filename,
62 static Image* FromStream(IStream *stream,
65 Image(const WCHAR *filename, BOOL useEmbeddedColorManagement = FALSE);
66 Image(IStream *stream, BOOL useEmbeddedColorManagement = FALSE);
68 virtual ~Image()
72 virtual Image* Clone() const
78 Image *result = new Image(cloneImage, lastStatus)
    [all...]
  /external/chromium_org/components/favicon_base/
favicon_util.cc 17 #include "ui/gfx/image/image_png_rep.h"
18 #include "ui/gfx/image/image_skia.h"
28 // Creates image reps of DIP size |favicon_size| for the subset of
29 // |favicon_scales| for which the image reps can be created without resizing
154 void SetFaviconColorSpace(gfx::Image* image) {
156 image->SetSourceColorSpace(base::mac::GetSystemColorSpace());
160 gfx::Image SelectFaviconFramesFromPNGs(
164 // Create image reps for as many scales as possible without resizing
168 // Creating the gfx::Image from |png_data| without resizing or decoding i
    [all...]
  /external/giflib/
dgif_lib.c 288 This routine should be called before any attempt to read an image.
327 This routine should be called before any attempt to read an image.
328 Note it is assumed the Image desc. header has been read.
344 if (DGifGetWord(GifFile, &GifFile->Image.Left) == GIF_ERROR ||
345 DGifGetWord(GifFile, &GifFile->Image.Top) == GIF_ERROR ||
346 DGifGetWord(GifFile, &GifFile->Image.Width) == GIF_ERROR ||
347 DGifGetWord(GifFile, &GifFile->Image.Height) == GIF_ERROR)
351 GifFreeMapObject(GifFile->Image.ColorMap);
352 GifFile->Image.ColorMap = NULL;
356 GifFile->Image.Interlace = (Buf[0] & 0x40) ? true : false
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
bookmarks_helper.h 100 // Sets the |icon_url| and |image| data for the favicon for |node| in the
105 const gfx::Image& image,
186 // Creates a favicon of |color| with image reps of the platform's supported
188 gfx::Image CreateFavicon(SkColor color);
191 gfx::Image Create1xFaviconFromPNGFile(const std::string& path);
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_view_delegate.h 15 #include "ui/gfx/image/image.h"
39 typedef std::map<ServerFieldType, gfx::Image> FieldIconMap;
84 virtual gfx::Image AccountChooserImage() = 0;
86 // Returns the image that should be shown on the left of the button strip
87 // or an empty image if none should be shown.
88 virtual gfx::Image ButtonStripImage() const = 0;
data_model_wrapper.h 18 class Image;
60 virtual gfx::Image GetIcon();
141 virtual gfx::Image GetIcon() OVERRIDE;
181 virtual gfx::Image GetIcon() OVERRIDE;
  /external/chromium_org/chrome/renderer/printing/
mock_printer.h 15 #include "printing/image.h"
32 const printing::Image& image);
38 const printing::Image& image() const { return image_; } function in class:MockPrinterPage
46 printing::Image image_;
  /external/chromium_org/components/enhanced_bookmarks/
test_image_store.cc 22 const gfx::Image& image) {
28 std::make_pair(image,
38 std::pair<gfx::Image, GURL> TestImageStore::Get(const GURL& page_url) {
43 return std::make_pair(gfx::Image(), GURL());
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
TextureImpl.h 33 class Image;
48 virtual Image *getImage(int level, int layer) const = 0;
49 virtual Image *getImage(const gl::ImageIndex &index) const = 0;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
OutlineLabelProvider.java 30 import org.eclipse.swt.graphics.Image;
44 public Image getImage(Object element) {
54 Image img = factory.getIcon(tagName, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
PaletteMetadataDescriptor.java 26 import org.eclipse.swt.graphics.Image;
65 public Image getGenericIcon() {
68 Image icon = factory.getIcon(mIconName);
  /sdk/eclipse/scripts/
gen_icon.py 6 import Image, ImageDraw, ImageFont
49 img = Image.new("RGBA", (sz4, sz4), (255,255,255,0))
66 img = img.resize((sz, sz), Image.BICUBIC)
  /external/deqp/framework/common/
tcuImageCompare.cpp 21 * \brief Image comparison utilities.
120 // Accept over the image bounds pixels since they could be anything
181 * \brief Fuzzy image comparison
183 * This image comparison is designed for comparing images rendered by 3D
196 * On failure error image is generated that shows where the failing pixels
201 * \param imageSetName Name for image set when logging results
202 * \param imageSetDesc Description for image set
203 * \param reference Reference image
204 * \param result Result image
228 log << TestLog::Message << "Image comparison failed: difference = " << difference << ", threshold = " << threshold << TestLog::EndMe (…)
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
DngCreatorTest.java 38 import android.media.Image;
88 * For each camera, capture a single RAW16 image at the first capture size reported for
89 * the raw format on that device, and save that image as a DNG file. No further validation
95 * raw image captured for the first reported camera device to be saved to an output file.
128 // Create capture image reader
133 Pair<Image, CaptureResult> resultPair = captureSingleRawShot(activeArraySize,
173 * For each camera, capture a single RAW16 image at the first capture size reported for
174 * the raw format on that device, and save that image as a DNG file. No further validation
180 * raw image captured for the first reported camera device to be saved to an output file.
221 // Create capture image reade
    [all...]
  /external/chromium_org/chrome/browser/ui/global_error/
global_error.cc 11 #include "ui/gfx/image/image.h"
59 gfx::Image GlobalErrorWithStandardBubble::GetBubbleViewIcon() {

Completed in 1678 milliseconds

1 2 3 4 5 6 7 891011>>