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 56 class PLATFORM_EXPORT SimpleFontData : public FontData {
59 static PassRefPtr<SimpleFontData> create(const FontPlatformData& platformData, PassRefPtr<CustomFontData> customData = nullptr, bool isTextOrientationFallback = false)
61 return adoptRef(new SimpleFontData(platformData, customData, isTextOrientationFallback));
65 static PassRefPtr<SimpleFontData> create(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic)
67 return adoptRef(new SimpleFontData(customData, fontSize, syntheticBold, syntheticItalic));
70 virtual ~SimpleFontData();
72 static const SimpleFontData* systemFallback() { return reinterpret_cast<const SimpleFontData*>(-1); }
79 PassRefPtr<SimpleFontData> smallCapsFontData(const FontDescription&) const;
80 PassRefPtr<SimpleFontData> emphasisMarkFontData(const FontDescription&) const
    [all...]

Completed in 61 milliseconds