OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FontCustomPlatformData
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontCustomPlatformDataMac.cpp
22
#include "platform/fonts/
FontCustomPlatformData
.h"
35
FontCustomPlatformData
::
FontCustomPlatformData
(CGFontRef cgFont, PassRefPtr<SkTypeface> typeface)
41
FontCustomPlatformData
::~
FontCustomPlatformData
()
45
FontPlatformData
FontCustomPlatformData
::fontPlatformData(float size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant widthVariant)
50
PassOwnPtr<
FontCustomPlatformData
>
FontCustomPlatformData
::create(SharedBuffer* buffer)
75
return adoptPtr(new
FontCustomPlatformData
(cgFontRef.leakRef(), typeface.release()));
78
bool
FontCustomPlatformData
::supportsFormat(const String& format
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontCustomPlatformDataSkia.cpp
34
#include "platform/fonts/
FontCustomPlatformData
.h"
47
FontCustomPlatformData
::
FontCustomPlatformData
(PassRefPtr<SkTypeface> typeface)
52
FontCustomPlatformData
::~
FontCustomPlatformData
()
56
FontPlatformData
FontCustomPlatformData
::fontPlatformData(float size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant)
85
PassOwnPtr<
FontCustomPlatformData
>
FontCustomPlatformData
::create(SharedBuffer* buffer)
104
return adoptPtr(new
FontCustomPlatformData
(typeface.release()));
107
bool
FontCustomPlatformData
::supportsFormat(const String& format
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontCustomPlatformDataWin.cpp
32
#include "platform/fonts/
FontCustomPlatformData
.h"
63
FontCustomPlatformData
::
FontCustomPlatformData
(HANDLE fontReference, const String& name)
69
FontCustomPlatformData
::~
FontCustomPlatformData
()
75
FontPlatformData
FontCustomPlatformData
::fontPlatformData(float size, bool bold, bool italic, FontOrientation orientation, FontWidthVariant)
109
PassOwnPtr<
FontCustomPlatformData
>
FontCustomPlatformData
::create(SharedBuffer* buffer)
127
return adoptPtr(new
FontCustomPlatformData
(fontReference, fontName));
130
bool
FontCustomPlatformData
::supportsFormat(const String& format
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCustomPlatformData.h
62
class PLATFORM_EXPORT
FontCustomPlatformData
{
63
WTF_MAKE_NONCOPYABLE(
FontCustomPlatformData
);
65
static PassOwnPtr<
FontCustomPlatformData
> create(SharedBuffer*);
66
~
FontCustomPlatformData
();
74
FontCustomPlatformData
(HANDLE fontReference, const String& name);
78
explicit
FontCustomPlatformData
(CGFontRef, PassRefPtr<SkTypeface>);
82
explicit
FontCustomPlatformData
(PassRefPtr<SkTypeface>);
Completed in 68 milliseconds