HomeSort by relevance Sort by last modified time
    Searched refs:Icon (Results 1 - 25 of 51) sorted by null

1 2 3

  /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/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/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/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/
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...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
IconMac.mm 22 #import "Icon.h"
31 Icon::Icon(NSImage *image)
38 Icon::~Icon()
43 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>& filenames)
65 return adoptRef(new Icon(image));
74 return adoptRef(new Icon(image));
78 void Icon::paint(GraphicsContext* context, 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/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/
FileChooser.h 40 class Icon;
69 Icon* icon() const { return m_icon.get(); } function in class:WebCore::FileChooser
75 // Called when FileChooserClient finishes to load an icon requested by iconForFiles().
76 void iconLoaded(PassRefPtr<Icon>);
96 RefPtr<Icon> m_icon;
FileChooser.cpp 32 #include "Icon.h"
93 void FileChooser::iconLoaded(PassRefPtr<Icon> icon)
95 m_icon = icon;
  /external/webkit/Source/WebKit/chromium/src/
WebIconLoadingCompletionImpl.cpp 35 #include "Icon.h"
56 m_fileChooser->iconLoaded(Icon::create(image));
  /bootable/recovery/
screen_ui.h 26 // (shows an icon + a progress bar, text logging, menu, etc.)
35 void SetBackground(Icon icon);
57 Icon currentIcon;
101 void draw_background_locked(Icon icon);
ui.h 38 enum Icon { NONE, INSTALLING_UPDATE, ERASING, NO_COMMAND, ERROR };
39 virtual void SetBackground(Icon icon) = 0;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
IconLoader.java 3 import javax.swing.Icon;
13 public static Icon load(Class<?> klass, String path) {
  /external/webkit/Source/WebCore/platform/android/
TemporaryLinkStubs.cpp 56 #include "Icon.h"
100 // therefore relates to the above. When a file has been selected, an icon
102 // web page. The icon for the file is encapsulated within this class.
103 Icon::~Icon() { }
104 void Icon::paint(GraphicsContext*, const IntRect&) { }
403 PassRefPtr<Icon> Icon::createIconForFiles(const Vector<String>&)
  /external/quake/quake/src/QW/
qwcl.x11.spec.sh 20 Icon: quake.gif
glqwcl.spec.sh 20 Icon: quake.gif
qwcl.spec.sh 20 Icon: quake.gif
qwsv.spec.sh 20 Icon: quake.gif
  /external/quake/quake/src/WinQuake/
quake-hipnotic.spec.sh 21 Icon: quake.gif
quake-data.spec.sh 21 Icon: quake.gif
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 30 public Bitmap icon; field in class:Input
44 icon = null;
59 icon = in.readParcelable(null);
80 dest.writeParcelable(icon, 0);
104 boolean setIcon(Bitmap Icon) { return true; }
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
CaptureRenderer.java 28 CaptureRenderer(ImageIcon icon, ViewNode node) {
29 super(icon);
53 Icon icon = getIcon(); local
54 int width = icon.getIconWidth();
55 int height = icon.getIconHeight();
60 icon.paintIcon(this, g, x, y);

Completed in 727 milliseconds

1 2 3