HomeSort by relevance Sort by last modified time
    Searched refs:Image (Results 176 - 200 of 880) sorted by null

1 2 3 4 5 6 78 91011>>

  /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...]
  /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;
  /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() {
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
menu_util.h 10 #include "ui/gfx/image/image.h"
18 GtkWidget* BuildMenuItemWithImage(const std::string& label, GtkWidget* image);
20 const gfx::Image& icon);
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_edit_controller.h 22 class Image;
  /external/chromium_org/chrome/browser/ui/test/
test_confirm_bubble_model.cc 35 gfx::Image* TestConfirmBubbleModel::GetIcon() const {
36 // Return an arbitrary non-empty image.
  /external/chromium_org/chrome/browser/ui/views/autofill/
decorated_textfield.h 10 #include "ui/gfx/image/image.h"
42 void SetIcon(const gfx::Image& icon);
  /external/chromium_org/chrome/browser/ui/views/infobars/
extension_infobar.h 40 void OnImageLoaded(const gfx::Image& image);
52 // plain image (in which case |icon_as_image_| is set) or a dropdown menu (in
63 // The image view for the icon.
64 // It is non-NULL if |infobar_icon_| is an image and in that case
  /external/chromium_org/chromecast/shell/common/
cast_content_client.cc 45 gfx::Image& CastContentClient::GetNativeImageNamed(int resource_id) const {
  /external/chromium_org/printing/
image_mac.cc 5 #include "printing/image.h"
15 bool Image::LoadMetafile(const Metafile& metafile) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImageResourceStyleImage.cpp 64 PassRefPtr<Image> RenderImageResourceStyleImage::image(int width, int height) const function in class:blink::RenderImageResourceStyleImage
66 // Generated content may trigger calls to image() while we're still pending, don't assert but gracefully exit.
69 return m_styleImage->image(m_renderer, IntSize(width, height));

Completed in 1701 milliseconds

1 2 3 4 5 6 78 91011>>