OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGFontData
(Results
1 - 10
of
10
) sorted by null
/external/webkit/WebCore/svg/
SVGFontData.cpp
24
#include "
SVGFontData
.h"
28
SVGFontData
::
SVGFontData
(SVGFontFaceElement* fontFaceElement)
39
SVGFontData
::~
SVGFontData
()
SVGFontData.h
29
class
SVGFontData
: public Noncopyable {
31
SVGFontData
(SVGFontFaceElement*);
32
virtual ~
SVGFontData
();
SVGHKernElement.h
34
class
SVGFontData
;
SVGGlyphElement.h
34
class
SVGFontData
;
66
// Used to mark our float properties as "to be inherited from
SVGFontData
"
119
static void inheritUnspecifiedAttributes(SVGGlyphIdentifier&, const
SVGFontData
*);
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
...]
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();
/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.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;
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) {
/external/webkit/WebCore/
Android.mk
810
svg/
SVGFontData
.cpp \
Completed in 150 milliseconds