Searched refs:FontCustomPlatformData (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFontCustomPlatformData.cpp22 #include "FontCustomPlatformData.h"
30 FontCustomPlatformData::~FontCustomPlatformData()
34 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode)
39 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
45 bool FontCustomPlatformData::supportsFormat(const String& /* format */)
H A DFontCustomPlatformData.h35 struct FontCustomPlatformData { struct in namespace:WebCore
36 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
38 FontCustomPlatformData() { } function in struct:WebCore::FontCustomPlatformData
39 ~FontCustomPlatformData();
46 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer*);
/external/webkit/Source/WebCore/platform/graphics/pango/
H A DFontCustomPlatformDataPango.cpp22 #include "FontCustomPlatformData.h"
29 FontCustomPlatformData::~FontCustomPlatformData()
33 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode)
43 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
49 bool FontCustomPlatformData::supportsFormat(const String& /* format */)
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFontCustomPlatformData.cpp22 #include "FontCustomPlatformData.h"
30 FontCustomPlatformData::~FontCustomPlatformData()
34 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, FontWidthVariant, FontRenderingMode)
39 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
44 bool FontCustomPlatformData::supportsFormat(const String& /* format */)
H A DFontCustomPlatformData.h35 struct FontCustomPlatformData { struct in namespace:WebCore
36 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
38 FontCustomPlatformData() { } function in struct:WebCore::FontCustomPlatformData
39 ~FontCustomPlatformData();
46 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer*);
/external/webkit/Source/WebCore/platform/graphics/android/fonts/
H A DFontCustomPlatformData.h43 class FontCustomPlatformData { class in namespace:WebCore
44 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
46 FontCustomPlatformData(SkTypeface* face);
47 ~FontCustomPlatformData();
58 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer);
H A DFontCustomPlatformData.cpp27 #include "FontCustomPlatformData.h"
36 FontCustomPlatformData::FontCustomPlatformData(SkTypeface* face) function in class:WebCore::FontCustomPlatformData
42 FontCustomPlatformData::~FontCustomPlatformData()
48 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic,
61 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
77 return new FontCustomPlatformData(face);
80 bool FontCustomPlatformData::supportsFormat(const String& format)
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DFontCustomPlatformData.h40 struct FontCustomPlatformData { struct in namespace:WebCore
41 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
43 FontCustomPlatformData(FT_Face, SharedBuffer*);
44 ~FontCustomPlatformData();
53 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DFontCustomPlatformData.h38 struct FontCustomPlatformData { struct in namespace:WebCore
39 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData); WTF_MAKE_FAST_ALLOCATED;
41 FontCustomPlatformData() { } function in struct:WebCore::FontCustomPlatformData
42 ~FontCustomPlatformData();
53 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer);
H A DFontCustomPlatformDataQt.cpp23 #include "FontCustomPlatformData.h"
32 FontCustomPlatformData::~FontCustomPlatformData()
37 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode)
49 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
59 FontCustomPlatformData *data = new FontCustomPlatformData;
64 bool FontCustomPlatformData::supportsFormat(const String& format)
/external/webkit/Source/WebCore/platform/graphics/win/
H A DFontCustomPlatformData.h39 struct FontCustomPlatformData { struct in namespace:WebCore
40 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
42 FontCustomPlatformData(HANDLE fontReference, const String& name) function in struct:WebCore::FontCustomPlatformData
48 ~FontCustomPlatformData();
59 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer*);
H A DFontCustomPlatformDataCairo.h36 struct FontCustomPlatformData { struct in namespace:WebCore
37 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
39 FontCustomPlatformData(cairo_font_face_t* fontFace) function in struct:WebCore::FontCustomPlatformData
43 ~FontCustomPlatformData();
52 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer*);
H A DFontCustomPlatformDataCairo.cpp33 FontCustomPlatformData::~FontCustomPlatformData()
38 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant)
48 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
61 return new FontCustomPlatformData(fontFace);
64 bool FontCustomPlatformData::supportsFormat(const String& format)
H A DFontCustomPlatformData.cpp22 #include "FontCustomPlatformData.h"
50 FontCustomPlatformData::~FontCustomPlatformData()
62 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode renderingMode)
165 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
210 return new FontCustomPlatformData(fontReference, fontName);
213 bool FontCustomPlatformData::supportsFormat(const String& format)
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DFontCustomPlatformData.h42 struct FontCustomPlatformData { struct in namespace:WebCore
43 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
45 FontCustomPlatformData(const String& name) function in struct:WebCore::FontCustomPlatformData
50 ~FontCustomPlatformData();
59 FontCustomPlatformData* createFontCustomPlatformData(const SharedBuffer*);
H A DFontCustomPlatformData.cpp23 #include "FontCustomPlatformData.h"
42 FontCustomPlatformData::~FontCustomPlatformData()
48 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode renderingMode)
73 FontCustomPlatformData* createFontCustomPlatformData(const SharedBuffer* buffer)
79 return new FontCustomPlatformData(fontName);
84 bool FontCustomPlatformData::supportsFormat(const String& format)
/external/webkit/Source/WebCore/platform/graphics/freetype/
H A DFontCustomPlatformDataFreeType.cpp23 #include "FontCustomPlatformData.h"
38 FontCustomPlatformData::FontCustomPlatformData(FT_Face freeTypeFace, SharedBuffer* buffer) function in class:WebCore::FontCustomPlatformData
56 FontCustomPlatformData::~FontCustomPlatformData()
62 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation, TextOrientation, FontWidthVariant, FontRenderingMode)
67 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
90 return new FontCustomPlatformData(freeTypeFace, buffer);
93 bool FontCustomPlatformData::supportsFormat(const String& format)
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontCustomPlatformData.h41 struct FontCustomPlatformData { struct in namespace:WebCore
42 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
44 FontCustomPlatformData(ATSFontContainerRef container, CGFontRef cgFont) function in struct:WebCore::FontCustomPlatformData
50 ~FontCustomPlatformData();
60 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer*);
H A DFontCustomPlatformData.cpp22 #include "FontCustomPlatformData.h"
32 FontCustomPlatformData::~FontCustomPlatformData()
41 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation orientation, TextOrientation textOrientation, FontWidthVariant widthVariant, FontRenderingMode)
46 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
114 return new FontCustomPlatformData(containerRef, cgFontRef.releaseRef());
117 bool FontCustomPlatformData::supportsFormat(const String& format)
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DFontCustomPlatformData.h54 struct FontCustomPlatformData { struct in namespace:WebCore
55 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData);
58 FontCustomPlatformData(HANDLE fontReference, const String& name) function in struct:WebCore::FontCustomPlatformData
63 explicit FontCustomPlatformData(SkTypeface* typeface) function in struct:WebCore::FontCustomPlatformData
68 ~FontCustomPlatformData();
83 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer*);
H A DFontCustomPlatformData.cpp34 #include "FontCustomPlatformData.h"
57 FontCustomPlatformData::~FontCustomPlatformData()
68 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic, FontOrientation orientation,
169 FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer)
189 return new FontCustomPlatformData(fontReference, fontName);
195 return new FontCustomPlatformData(typeface);
202 bool FontCustomPlatformData::supportsFormat(const String& format)
/external/webkit/Source/WebCore/css/
H A DCSSFontFaceSrcValue.cpp29 #include "FontCustomPlatformData.h"
56 return FontCustomPlatformData::supportsFormat(m_format)
/external/webkit/Source/WebCore/loader/cache/
H A DCachedFont.h48 struct FontCustomPlatformData;
76 FontCustomPlatformData* m_fontData;
/external/webkit/Source/WebCore/
H A DAndroid.mk654 platform/graphics/android/fonts/FontCustomPlatformData.cpp \

Completed in 473 milliseconds