OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Icon
(Results
1 - 10
of
10
) sorted by null
/external/webkit/WebCore/platform/graphics/chromium/
IconChromiumLinux.cpp
32
#include "
Icon
.h"
40
Icon
::
Icon
(const PlatformIcon&
icon
)
41
: m_icon(
icon
)
45
Icon
::~
Icon
()
49
PassRefPtr<
Icon
>
Icon
::createIconForFiles(const Vector<String>&)
55
void
Icon
::paint(GraphicsContext*, const IntRect&
[
all
...]
IconChromiumWin.cpp
32
#include "
Icon
.h"
44
Icon
::
Icon
(const PlatformIcon&
icon
)
45
: m_icon(
icon
)
49
Icon
::~
Icon
()
55
PassRefPtr<
Icon
>
Icon
::createIconForFiles(const Vector<String>& filenames)
62
void
Icon
::paint(GraphicsContext* context, const IntRect& rect
[
all
...]
IconChromiumMac.cpp
32
#include "
Icon
.h"
42
PassRefPtr<
Icon
>
Icon
::createIconForFiles(const Vector<String>&)
47
Icon
::~
Icon
()
51
void
Icon
::paint(GraphicsContext*, const IntRect&)
/external/webkit/WebCore/platform/graphics/qt/
IconQt.cpp
22
#include "
Icon
.h"
35
Icon
::
Icon
()
39
Icon
::~
Icon
()
43
PassRefPtr<
Icon
>
Icon
::createIconForFiles(const Vector<String>& filenames)
49
RefPtr<
Icon
> i = adoptRef(new
Icon
);
58
void
Icon
::paint(GraphicsContext* ctx, const IntRect& rect
[
all
...]
/external/webkit/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
()
50
PassRefPtr<
Icon
>
Icon
::createIconForFiles(const Vector<String>& filenames
[
all
...]
/external/webkit/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/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/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
102
RefPtr<Icon>
icon
= adoptRef(new Icon);
local
[
all
...]
/external/webkit/WebCore/platform/graphics/
Icon.h
52
class
Icon
: public RefCounted<
Icon
> {
54
static PassRefPtr<
Icon
> createIconForFiles(const Vector<String>& filenames);
56
~
Icon
();
61
static PassRefPtr<
Icon
> create(HICON hIcon) { return adoptRef(new
Icon
(hIcon)); }
66
Icon
(NSImage*);
69
Icon
(HICON);
72
Icon
();
75
Icon
();
[
all
...]
/external/webkit/WebCore/platform/android/
TemporaryLinkStubs.cpp
56
#include "
Icon
.h"
161
// therefore relates to the above. When a file has been selected, an
icon
163
// web page. The
icon
for the file is encapsulated within this class.
164
Icon
::~
Icon
() { }
165
void
Icon
::paint(GraphicsContext*, const IntRect&) { }
482
PassRefPtr<
Icon
>
Icon
::createIconForFiles(const Vector<String>&)
Completed in 582 milliseconds