HomeSort by relevance Sort by last modified time
    Searched defs:Icon (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/chromium/
IconChromium.cpp 32 #include "Icon.h"
39 Icon::Icon(PassRefPtr<PlatformIcon> icon)
40 : m_icon(icon)
44 Icon::~Icon()
48 void Icon::paint(GraphicsContext* context, const IntRect& rect)
53 // An Icon doesn't know the color space of the file upload control.
  /external/webkit/Source/WebCore/platform/graphics/efl/
IconEfl.cpp 35 #include "Icon.h"
45 Icon::Icon()
51 Icon::~Icon()
55 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>& filenames)
61 void Icon::paint(GraphicsContext* context, const IntRect& rect)
  /external/webkit/Source/WebCore/platform/graphics/qt/
IconQt.cpp 22 #include "Icon.h"
35 Icon::Icon()
39 Icon::~Icon()
44 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>& filenames)
50 RefPtr<Icon> i = adoptRef(new Icon);
59 void Icon::paint(GraphicsContext* ctx, const IntRect& rect
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
IconWin.cpp 23 #include "Icon.h"
39 Icon::Icon(HICON icon)
40 : m_hIcon(icon)
42 ASSERT(icon);
45 Icon::~Icon()
51 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>& filenames
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/brew/
IconBrew.cpp 25 #include "Icon.h"
34 Icon::~Icon()
39 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>& filenames)
45 void Icon::paint(GraphicsContext*, const IntRect&)
  /external/webkit/Source/WebCore/platform/graphics/haiku/
IconHaiku.cpp 24 #include "Icon.h"
34 Icon::~Icon()
39 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>& filenames)
45 void Icon::paint(GraphicsContext*, const IntRect&)
  /external/webkit/Source/WebCore/platform/graphics/wx/
IconWx.cpp 22 #include "Icon.h"
31 Icon::~Icon()
35 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>& filenames)
41 void Icon::paint(GraphicsContext* ctx, const IntRect& rect)
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IconGtk.cpp 31 #include "Icon.h"
42 Icon::Icon()
47 Icon::~Icon()
56 Lookup an appropriate icon according to either the Icon Naming Spec
57 or conventional Gnome icon names respectively.
59 See http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.htm
103 RefPtr<Icon> icon = adoptRef(new Icon); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
Icon.h 54 class Icon : public RefCounted<Icon> {
56 static PassRefPtr<Icon> createIconForFiles(const Vector<String>& filenames);
58 ~Icon();
63 static PassRefPtr<Icon> create(HICON hIcon) { return adoptRef(new Icon(hIcon)); }
65 static PassRefPtr<Icon> create(PassRefPtr<PlatformIcon> icon) { return adoptRef(new Icon(icon)); }
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
Icon.java 22 public class Icon extends GLView {
29 public Icon(Context context, int iconId, int width, int height) {
33 public Icon(Context context, BasicTexture icon, int width, int height) {
34 mIcon = icon;
53 // Draw the icon in the center of the space
  /external/webkit/Source/WebCore/platform/android/
TemporaryLinkStubs.cpp 56 #include "Icon.h"
107 // therefore relates to the above. When a file has been selected, an icon
109 // web page. The icon for the file is encapsulated within this class.
110 Icon::~Icon() { }
111 void Icon::paint(GraphicsContext*, const IntRect&) { }
422 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>&)

Completed in 301 milliseconds