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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
SimpleFontData.cpp 31 #include "platform/fonts/SimpleFontData.h"
42 SimpleFontData::SimpleFontData(const FontPlatformData& platformData, PassRefPtr<CustomFontData> customData, bool isTextOrientationFallback)
66 SimpleFontData::SimpleFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic)
82 void SimpleFontData::initCharWidths()
102 void SimpleFontData::platformGlyphInit()
145 SimpleFontData::~SimpleFontData()
156 const SimpleFontData* SimpleFontData::fontDataForCharacter(UChar32) cons
    [all...]
SimpleFontData.h 57 class PLATFORM_EXPORT SimpleFontData : public FontData {
60 static PassRefPtr<SimpleFontData> create(const FontPlatformData& platformData, PassRefPtr<CustomFontData> customData = 0, bool isTextOrientationFallback = false)
62 return adoptRef(new SimpleFontData(platformData, customData, isTextOrientationFallback));
66 static PassRefPtr<SimpleFontData> create(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic)
68 return adoptRef(new SimpleFontData(customData, fontSize, syntheticBold, syntheticItalic));
71 virtual ~SimpleFontData();
73 static const SimpleFontData* systemFallback() { return reinterpret_cast<const SimpleFontData*>(-1); }
80 PassRefPtr<SimpleFontData> smallCapsFontData(const FontDescription&) const;
81 PassRefPtr<SimpleFontData> emphasisMarkFontData(const FontDescription&) const
    [all...]

Completed in 1383 milliseconds