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

  /external/webkit/WebCore/svg/
SVGGlyphElement.cpp 28 #include "SVGFontData.h"
110 void SVGGlyphElement::inheritUnspecifiedAttributes(SVGGlyphIdentifier& identifier, const SVGFontData* svgFontData)
113 identifier.horizontalAdvanceX = svgFontData->horizontalAdvanceX();
116 identifier.verticalOriginX = svgFontData->verticalOriginX();
119 identifier.verticalOriginY = svgFontData->verticalOriginY();
122 identifier.verticalAdvanceY = svgFontData->verticalAdvanceY();
SVGFont.cpp 31 #include "SVGFontData.h"
210 static inline const SVGFontData* svgFontAndFontFaceElementForFontData(const SimpleFontData* fontData, SVGFontFaceElement*& fontFace, SVGFontElement*& font)
215 const SVGFontData* svgFontData = static_cast<const SVGFontData*>(fontData->svgFontData());
217 fontFace = svgFontData->svgFontFaceElement();
221 return svgFontData;
231 SVGTextRunWalker(const SVGFontData* fontData, SVGFontElement* fontElement, SVGTextRunData& data,
323 const SVGFontData* m_fontData
    [all...]
  /external/webkit/WebCore/css/
CSSFontFaceSource.cpp 41 #include "SVGFontData.h"
155 SVGFontData* svgFontData = new SVGFontData(fontFaceElement);
156 fontData.set(new SimpleFontData(m_font->platformDataFromCustomData(fontDescription.computedPixelSize(), syntheticBold, syntheticItalic, fontDescription.renderingMode()), true, false, svgFontData));
171 SVGFontData* svgFontData = new SVGFontData(m_svgFontFaceElement);
172 fontData.set(new SimpleFontData(FontPlatformData(fontDescription.computedPixelSize(), syntheticBold, syntheticItalic), true, false, svgFontData));
  /external/webkit/WebCore/platform/graphics/
SimpleFontData.cpp 37 #include "SVGFontData.h"
50 SimpleFontData::SimpleFontData(const FontPlatformData& f, bool customFont, bool loading, SVGFontData* svgFontData)
57 , m_svgFontData(svgFontData)
64 UNUSED_PARAM(svgFontData);
66 if (SVGFontFaceElement* svgFontFaceElement = svgFontData ? svgFontData->svgFontFaceElement() : 0) {
SimpleFontData.h 60 class SVGFontData;
67 SimpleFontData(const FontPlatformData&, bool customFont = false, bool loading = false, SVGFontData* data = 0);
103 SVGFontData* svgFontData() const { return m_svgFontData.get(); }
189 OwnPtr<SVGFontData> m_svgFontData;

Completed in 196 milliseconds