HomeSort by relevance Sort by last modified time
    Searched refs:customData (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
SimpleFontData.h 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));
180 SimpleFontData(const FontPlatformData&, PassRefPtr<CustomFontData> customData, bool isTextOrientationFallback = false);
182 SimpleFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic);
SimpleFontData.cpp 42 SimpleFontData::SimpleFontData(const FontPlatformData& platformData, PassRefPtr<CustomFontData> customData, bool isTextOrientationFallback)
53 , m_customFontData(customData)
66 SimpleFontData::SimpleFontData(PassRefPtr<CustomFontData> customData, float fontSize, bool syntheticBold, bool syntheticItalic)
75 , m_customFontData(customData)
GlyphPageTreeNode.cpp 231 RefPtr<CustomFontData> customData = range.fontData()->customFontData();
232 if (customData && customData->isLoadingFallback()) {
233 customData->beginLoadIfNeeded();

Completed in 50 milliseconds