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

  /external/webkit/WebCore/platform/graphics/win/
FontPlatformDataWin.cpp 26 #include "FontPlatformData.h"
38 FontPlatformData::FontPlatformData(HFONT font, float size, bool bold, bool oblique, bool useGDI)
74 FontPlatformData::FontPlatformData(float size, bool bold, bool oblique)
89 String FontPlatformData::description() const
FontPlatformDataCairoWin.cpp 27 #include "FontPlatformData.h"
41 void FontPlatformData::platformDataInit(HFONT font, float size, HDC hdc, WCHAR* faceName)
59 FontPlatformData::FontPlatformData(cairo_font_face_t* fontFace, float size, bool bold, bool oblique)
83 FontPlatformData::FontPlatformData(const FontPlatformData& source)
100 FontPlatformData::~FontPlatformData()
106 FontPlatformData& FontPlatformData::operator=(const FontPlatformData& other
    [all...]
FontPlatformDataCGWin.cpp 25 #include "FontPlatformData.h"
110 void FontPlatformData::platformDataInit(HFONT font, float size, HDC hdc, WCHAR* faceName)
137 FontPlatformData::FontPlatformData(HFONT hfont, CGFontRef font, float size, bool bold, bool oblique, bool useGDI)
147 FontPlatformData::~FontPlatformData()
FontPlatformData.h 44 class FontPlatformData {
46 FontPlatformData()
61 FontPlatformData(HFONT, float size, bool bold, bool oblique, bool useGDI);
62 FontPlatformData(float size, bool bold, bool oblique);
65 FontPlatformData(HFONT, CGFontRef, float size, bool bold, bool oblique, bool useGDI);
67 FontPlatformData(cairo_font_face_t*, float size, bool bold, bool oblique);
68 FontPlatformData(const FontPlatformData&);
70 FontPlatformData& operator=(const FontPlatformData&)
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
FontPlatformDataAndroid.cpp 31 #include "FontPlatformData.h"
48 SkDebugf("---------- FontPlatformData %d\n", gMaxCount);
59 #define trace(num) SkDebugf("FontPlatformData%d %p %g %d %d\n", num, mTypeface, mTextSize, mFakeBold, mFakeItalic)
66 FontPlatformData::FontPlatformData()
73 FontPlatformData::FontPlatformData(const FontPlatformData& src)
89 FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold, bool fakeItalic
    [all...]
FontPlatformData.h 44 class FontPlatformData {
46 static FontPlatformData Deleted() {
47 return FontPlatformData(NULL, -1, false, false);
50 FontPlatformData();
51 FontPlatformData(const FontPlatformData&);
52 FontPlatformData(SkTypeface*, float textSize, bool fakeBold, bool fakeItalic);
53 FontPlatformData(const FontPlatformData& src, float textSize);
54 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique)
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
FontPlatformDataChromiumWin.cpp 33 #include "FontPlatformData.h"
44 FontPlatformData::FontPlatformData(WTF::HashTableDeletedValueType)
52 FontPlatformData::FontPlatformData()
60 FontPlatformData::FontPlatformData(HFONT font, float size)
69 FontPlatformData::FontPlatformData(float size, bool bold, bool oblique)
77 FontPlatformData::FontPlatformData(const FontPlatformData& data
    [all...]
FontPlatformDataLinux.cpp 32 #include "FontPlatformData.h"
47 void FontPlatformData::setHinting(SkPaint::Hinting hinting)
52 void FontPlatformData::setAntiAlias(bool isAntiAlias)
57 void FontPlatformData::setSubpixelGlyphs(bool isSubpixelGlyphs)
62 FontPlatformData::RefCountedHarfbuzzFace::~RefCountedHarfbuzzFace()
67 FontPlatformData::FontPlatformData(const FontPlatformData& src)
77 FontPlatformData::FontPlatformData(SkTypeface* tf, float textSize, bool fakeBold, bool fakeItalic
    [all...]
FontPlatformDataLinux.h 49 // FontPlatformData is the handle which WebKit has on a specific face. A face
53 class FontPlatformData {
60 FontPlatformData(WTF::HashTableDeletedValueType)
67 FontPlatformData()
74 FontPlatformData(float textSize, bool fakeBold, bool fakeItalic)
81 FontPlatformData(const FontPlatformData&);
82 FontPlatformData(SkTypeface*, float textSize, bool fakeBold, bool fakeItalic);
83 FontPlatformData(const FontPlatformData& src, float textSize)
    [all...]
FontPlatformDataChromiumWin.h 50 class FontPlatformData {
57 FontPlatformData(WTF::HashTableDeletedValueType);
58 FontPlatformData();
59 FontPlatformData(HFONT, float size);
60 FontPlatformData(float size, bool bold, bool oblique);
61 FontPlatformData(const FontPlatformData&);
63 FontPlatformData& operator=(const FontPlatformData&);
67 ~FontPlatformData();
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
FontPlatformDataQt.cpp 23 #include "FontPlatformData.h"
35 FontPlatformData::FontPlatformData(float size, bool bold, bool oblique)
43 FontPlatformData::FontPlatformData(const FontPlatformData &other) : m_data(other.m_data)
49 FontPlatformData::FontPlatformData(const FontDescription& description, const AtomicString& familyName, int wordSpacing, int letterSpacing)
66 FontPlatformData::~FontPlatformData()
    [all...]
FontPlatformData.h 64 class FontPlatformData : public FastAllocBase {
66 FontPlatformData(float size, bool bold, bool oblique);
67 FontPlatformData(const FontPlatformData &);
68 FontPlatformData(const FontDescription&, const AtomicString& familyName, int wordSpacing = 0, int letterSpacing = 0);
69 FontPlatformData(const QFont& font)
72 FontPlatformData(WTF::HashTableDeletedValueType)
76 ~FontPlatformData();
78 FontPlatformData& operator=(const FontPlatformData&)
    [all...]
  /external/webkit/WebCore/platform/graphics/wx/
FontPlatformDataWx.cpp 27 #include "FontPlatformData.h"
76 FontPlatformData::FontPlatformData(const FontDescription& desc, const AtomicString& family)
106 unsigned FontPlatformData::computeHash() const {
119 FontPlatformData::~FontPlatformData()
126 String FontPlatformData::description() const
133 bool FontPlatformData::useGDI() const
138 HFONT FontPlatformData::hfont() const
FontPlatformData.h 62 class FontPlatformData {
66 FontPlatformData(WTF::HashTableDeletedValueType)
71 ~FontPlatformData();
73 FontPlatformData(const FontDescription&, const AtomicString&);
74 FontPlatformData(float size, bool bold, bool italic)
80 FontPlatformData()
103 bool operator==(const FontPlatformData& other) const
  /external/webkit/WebCore/platform/graphics/wince/
FontPlatformData.h 40 class FontPlatformData {
44 FontPlatformData(): m_private(0) {}
45 FontPlatformData(float size, bool bold, bool oblique);
48 FontPlatformData(WTF::HashTableDeletedValueType) : m_private((FontPlatformPrivateData*)1) {}
51 FontPlatformData(const FontDescription& fontDescription, const AtomicString& family, bool useDefaultFontIfNotPresent = true);
53 ~FontPlatformData();
55 FontPlatformData(const FontPlatformData& o) : m_private(0) { operator=(o); }
56 FontPlatformData& operator=(const FontPlatformData& o)
    [all...]
FontPlatformData.cpp 22 #include "FontPlatformData.h"
199 if (FontPlatformData::isSongTiSupported())
257 winFont.lfWeight = FontPlatformData::adjustedGDIFontWeight(weight, family);
275 fontData->m_codePages |= FontPlatformData::getKnownFontCodePages(winFont.lfFaceName);
322 , m_family(FontPlatformData::defaultFontFamily())
343 FontPlatformData::FontPlatformData(const FontDescription& fontDescription, const AtomicString& desiredFamily, bool useDefaultFontIfNotPresent)
356 FontPlatformData::FontPlatformData(float size, bool bold, bool oblique)
364 FontPlatformData::~FontPlatformData(
    [all...]
  /external/webkit/WebCore/platform/graphics/gtk/
FontPlatformDataGtk.cpp 26 #include "FontPlatformData.h"
39 FontPlatformData::FontPlatformData(const FontDescription& fontDescription, const AtomicString& familyName)
47 FontPlatformData::init();
127 FontPlatformData::FontPlatformData(float size, bool bold, bool italic)
137 FontPlatformData::FontPlatformData(cairo_font_face_t* fontFace, int size, bool bold, bool italic)
163 FontPlatformData& FontPlatformData::operator=(const FontPlatformData& other
    [all...]
FontPlatformDataPango.cpp 26 #include "FontPlatformData.h"
46 PangoFontMap* FontPlatformData::m_fontMap = 0;
47 GHashTable* FontPlatformData::m_hashTable = 0;
49 FontPlatformData::FontPlatformData(const FontDescription& fontDescription, const AtomicString& familyName)
57 FontPlatformData::init();
130 FontPlatformData::FontPlatformData(float size, bool bold, bool italic)
140 FontPlatformData::FontPlatformData(cairo_font_face_t* fontFace, int size, bool bold, bool italic
    [all...]
FontPlatformData.h 47 class FontPlatformData {
49 FontPlatformData(WTF::HashTableDeletedValueType)
62 FontPlatformData()
75 FontPlatformData(const FontDescription&, const AtomicString& family);
77 FontPlatformData(float size, bool bold, bool italic);
78 FontPlatformData(cairo_font_face_t* fontFace, int size, bool bold, bool italic);
79 FontPlatformData(const FontPlatformData&);
81 ~FontPlatformData();
102 bool operator==(const FontPlatformData&) const
    [all...]
  /external/webkit/WebCore/platform/graphics/haiku/
FontPlatformData.h 37 class FontPlatformData {
39 FontPlatformData(WTF::HashTableDeletedValueType)
43 FontPlatformData()
47 FontPlatformData(const FontDescription&, const AtomicString& family);
48 FontPlatformData(float size, bool bold, bool oblique);
49 FontPlatformData(const FontPlatformData&);
51 ~FontPlatformData();
63 bool operator==(const FontPlatformData&) const;
  /external/webkit/WebCore/platform/graphics/mac/
FontPlatformData.h 54 struct FontPlatformData {
55 FontPlatformData(float size, bool syntheticBold, bool syntheticOblique)
67 FontPlatformData(NSFont *nsFont, bool syntheticBold = false, bool syntheticOblique = false);
69 FontPlatformData(CGFontRef cgFont, ATSUFontID fontID, float size, bool syntheticBold, bool syntheticOblique)
79 FontPlatformData(const FontPlatformData&);
81 ~FontPlatformData();
83 FontPlatformData(WTF::HashTableDeletedValueType) : m_font(hashTableDeletedFontValue()) { }
103 const FontPlatformData& operator=(const FontPlatformData& f)
    [all...]

Completed in 717 milliseconds