Searched refs:GdkPixbuf (Results 1 - 25 of 73) sorted by relevance

123

/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DGdkCairoUtilities.h29 GdkPixbuf* cairoImageSurfaceToGdkPixbuf(cairo_surface_t* surface);
H A DGdkCairoUtilities.cpp33 GdkPixbuf* cairoImageSurfaceToGdkPixbuf(cairo_surface_t* surface)
H A DImageBufferGtk.cpp42 // List of supported image types comes from the GdkPixbuf documentation.
48 GRefPtr<GdkPixbuf> pixbuf = cairoImageSurfaceToGdkPixbuf(m_data.m_surface);
/external/chromium/chrome/browser/ui/gtk/
H A Dcairo_cached_surface.h9 typedef struct _GdkPixbuf GdkPixbuf; typedef in typeref:struct:_GdkPixbuf
13 // A helper class that takes a GdkPixbuf* and renders it to the screen. Unlike
28 // Whether this CairoCachedSurface owns a GdkPixbuf.
41 void UsePixbuf(GdkPixbuf* pixbuf);
49 GdkPixbuf* pixbuf() { return pixbuf_; }
53 GdkPixbuf* pixbuf_;
H A Dgtk_theme_service.h30 typedef struct _GdkPixbuf GdkPixbuf; typedef in typeref:struct:_GdkPixbuf
138 static GdkPixbuf* GetFolderIcon(bool native);
139 static GdkPixbuf* GetDefaultFavicon(bool native);
233 GdkPixbuf* pixbuf,
308 static GdkPixbuf* default_folder_icon_;
309 static GdkPixbuf* default_bookmark_icon_;
H A Dnine_box.h57 GdkPixbuf* images_[9];
H A Dcreate_application_shortcuts_dialog_gtk.h17 typedef struct _GdkPixbuf GdkPixbuf; typedef in typeref:struct:_GdkPixbuf
62 GdkPixbuf* favicon_pixbuf_;
H A Dcairo_cached_surface.cc31 void CairoCachedSurface::UsePixbuf(GdkPixbuf* pixbuf) {
H A Dtab_contents_drag_source.h71 GdkPixbuf* drag_pixbuf_;
/external/chromium/chrome/browser/themes/
H A Dtheme_service_gtk.cc14 GdkPixbuf* ThemeService::GetPixbufNamed(int id) const {
18 GdkPixbuf* ThemeService::GetRTLEnabledPixbufNamed(int id) const {
22 GdkPixbuf* ThemeService::GetPixbufImpl(int id, bool rtl_enabled) const {
33 GdkPixbuf* pixbuf = gfx::GdkPixbufFromSkBitmap(bitmap);
38 GdkPixbuf* original_pixbuf = pixbuf;
48 LOG(WARNING) << "Unable to load GdkPixbuf with id " << id;
51 static GdkPixbuf* empty_bitmap = NULL;
H A Dtheme_service.h153 virtual GdkPixbuf* GetPixbufNamed(int id) const;
154 virtual GdkPixbuf* GetRTLEnabledPixbufNamed(int id) const;
267 GdkPixbuf* GetPixbufImpl(int id, bool rtl_enabled) const;
271 typedef std::map<int, GdkPixbuf*> GdkPixbufMap;
/external/webkit/Tools/DumpRenderTree/gtk/
H A DImageDiff.cpp45 GdkPixbuf* readPixbufFromStdin(long imageSize)
66 GdkPixbuf* decodedImage = gdk_pixbuf_loader_get_pixbuf(loader);
71 GdkPixbuf* differenceImageFromDifferenceBuffer(unsigned char* buffer, int width, int height)
73 GdkPixbuf* image = gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8, width, height);
89 float calculateDifference(GdkPixbuf* baselineImage, GdkPixbuf* actualImage, GdkPixbuf** differenceImage)
150 void printImage(GdkPixbuf* image)
164 void printImageDifferences(GdkPixbuf* baselineImage, GdkPixbuf* actualImag
[all...]
/external/chromium/chrome/browser/ui/gtk/bookmarks/
H A Dbookmark_utils_gtk.h21 typedef struct _GdkPixbuf GdkPixbuf; typedef in typeref:struct:_GdkPixbuf
31 GdkPixbuf* GetPixbufForNode(const BookmarkNode* node, BookmarkModel* model,
36 GtkWidget* GetDragRepresentation(GdkPixbuf* pixbuf,
H A Dbookmark_tree_model.h20 typedef struct _GdkPixbuf GdkPixbuf; typedef in typeref:struct:_GdkPixbuf
H A Dbookmark_utils_gtk.cc53 void PackButton(GdkPixbuf* pixbuf, const string16& title, bool ellipsize,
100 GdkPixbuf* favicon;
104 DragRepresentationData(GdkPixbuf* favicon,
160 GdkPixbuf* GetPixbufForNode(const BookmarkNode* node, BookmarkModel* model,
162 GdkPixbuf* pixbuf;
179 GtkWidget* GetDragRepresentation(GdkPixbuf* pixbuf,
222 GdkPixbuf* pixbuf = GetPixbufForNode(node, model, provider->UseGtkTheme());
230 GdkPixbuf* pixbuf = bookmark_utils::GetPixbufForNode(node, model,
/external/webkit/Source/WebCore/platform/gtk/
H A DDataObjectGtk.h42 GdkPixbuf* image() { return m_image.get(); }
44 void setImage(GdkPixbuf* newImage) { m_image = newImage; }
76 GRefPtr<GdkPixbuf> m_image;
/external/webkit/Source/WebCore/platform/graphics/
H A DIcon.h41 typedef struct _GdkPixbuf GdkPixbuf; typedef in typeref:struct:_GdkPixbuf
80 GdkPixbuf* m_icon;
H A DImage.h63 typedef struct _GdkPixbuf GdkPixbuf; typedef in typeref:struct:_GdkPixbuf
154 virtual GdkPixbuf* getGdkPixbuf() { return 0; }
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkiticondatabase.cpp272 * Obtains a #GdkPixbuf of the favicon for the given page URI, or
282 * Returns: (transfer full): a new reference to a #GdkPixbuf, or %NULL
286 GdkPixbuf* webkit_icon_database_get_icon_pixbuf(WebKitIconDatabase* database, const gchar* pageURI)
297 GdkPixbuf* pixbuf = icon->getGdkPixbuf();
300 return static_cast<GdkPixbuf*>(g_object_ref(pixbuf));
H A Dwebkiticondatabase.h69 WEBKIT_API GdkPixbuf*
/external/chromium/chrome/browser/
H A Dicon_loader_linux.cc47 GdkPixbuf* pixbuf = gdk_pixbuf_loader_get_pixbuf(loader);
/external/chromium/chrome/browser/ui/gtk/status_icons/
H A Dstatus_icon_gtk.cc32 GdkPixbuf* pixbuf = gfx::GdkPixbufFromSkBitmap(&image);
/external/webkit/Source/JavaScriptCore/wtf/gobject/
H A DGTypedefs.h49 typedef struct _GdkPixbuf GdkPixbuf; typedef in typeref:struct:_GdkPixbuf
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_popup_view_gtk.h76 GdkPixbuf* IconForMatch(const AutocompleteMatch& match, bool selected);
127 typedef std::map<const SkBitmap*, GdkPixbuf*> PixbufMap;
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_uninstall_dialog_gtk.cc63 GdkPixbuf* pixbuf = gfx::GdkPixbufFromSkBitmap(skia_icon);

Completed in 289 milliseconds

123