HomeSort by relevance Sort by last modified time
    Searched refs:SVGFontFaceElement (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontFaceElement.idl 28 ] interface SVGFontFaceElement : SVGElement {
SVGFontFaceSource.h 14 class SVGFontFaceElement;
18 SVGFontFaceSource(SVGFontFaceElement*);
25 RawPtrWillBeMember<SVGFontFaceElement> m_svgFontFaceElement;
SVGFontFaceElement.h 35 class SVGFontFaceElement FINAL : public SVGElement {
38 DECLARE_NODE_FACTORY(SVGFontFaceElement);
56 WeakPtr<SVGFontFaceElement> createWeakRef() { return m_weakFactory.createWeakPtr(); }
61 explicit SVGFontFaceElement(Document&);
73 WeakPtrFactory<SVGFontFaceElement> m_weakFactory;
SVGFontFaceElement.cpp 25 #include "core/svg/SVGFontFaceElement.h"
49 inline SVGFontFaceElement::SVGFontFaceElement(Document& document)
59 DEFINE_NODE_FACTORY(SVGFontFaceElement)
109 void SVGFontFaceElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
121 unsigned SVGFontFaceElement::unitsPerEm() const
130 int SVGFontFaceElement::xHeight() const
135 float SVGFontFaceElement::horizontalOriginX() const
146 float SVGFontFaceElement::horizontalOriginY() const
157 float SVGFontFaceElement::horizontalAdvanceX() cons
    [all...]
SVGFontData.h 32 class SVGFontFaceElement;
36 static PassRefPtr<SVGFontData> create(SVGFontFaceElement* element)
50 SVGFontFaceElement* svgFontFaceElement() const;
61 SVGFontData(SVGFontFaceElement*);
68 // Ths SVGFontFaceElement is kept alive --
74 WeakPtr<SVGFontFaceElement> m_svgFontFaceElement;
SVGDocumentExtensions.h 37 class SVGFontFaceElement;
74 const WillBeHeapHashSet<RawPtrWillBeMember<SVGFontFaceElement> >& svgFontFaceElements() const { return m_svgFontFaceElements; }
75 void registerSVGFontFaceElement(SVGFontFaceElement*);
76 void unregisterSVGFontFaceElement(SVGFontFaceElement*);
78 void registerPendingSVGFontFaceElementsForRemoval(PassRefPtrWillBeRawPtr<SVGFontFaceElement>);
96 WillBeHeapHashSet<RawPtrWillBeMember<SVGFontFaceElement> > m_svgFontFaceElements;
98 WillBeHeapHashSet<RefPtrWillBeMember<SVGFontFaceElement> > m_pendingSVGFontFaceElementsForRemoval;
SVGFontFaceSource.cpp 11 #include "core/svg/SVGFontFaceElement.h"
17 SVGFontFaceSource::SVGFontFaceSource(SVGFontFaceElement* element)
SVGRemoteFontFaceSource.cpp 14 #include "core/svg/SVGFontFaceElement.h"
56 if (SVGFontFaceElement* fontFaceElement = Traversal<SVGFontFaceElement>::firstChild(*m_externalSVGFontElement)) {
SVGFontData.cpp 31 #include "core/svg/SVGFontFaceElement.h"
47 SVGFontData::SVGFontData(SVGFontFaceElement* fontFaceElement)
68 SVGFontFaceElement* svgFontFaceElement = this->svgFontFaceElement();
70 SVGFontElement* svgFontElement = svgFontFaceElement->associatedFontElement();
80 unsigned unitsPerEm = svgFontFaceElement->unitsPerEm();
82 float xHeight = svgFontFaceElement->xHeight() * scale;
83 float ascent = svgFontFaceElement->ascent() * scale;
84 float descent = svgFontFaceElement->descent() * scale
    [all...]
SVGDocumentExtensions.cpp 31 #include "core/svg/SVGFontFaceElement.h"
342 void SVGDocumentExtensions::registerSVGFontFaceElement(SVGFontFaceElement* element)
347 void SVGDocumentExtensions::unregisterSVGFontFaceElement(SVGFontFaceElement* element)
353 void SVGDocumentExtensions::registerPendingSVGFontFaceElementsForRemoval(PassRefPtrWillBeRawPtr<SVGFontFaceElement> font)
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceSrcValue.h 39 class SVGFontFaceElement;
64 SVGFontFaceElement* svgFontFaceElement() const { return m_svgFontFaceElement; }
65 void setSVGFontFaceElement(SVGFontFaceElement* element) { m_svgFontFaceElement = element; }
102 SVGFontFaceElement* m_svgFontFaceElement;
FontFace.cpp 57 #include "core/svg/SVGFontFaceElement.h"
520 foundSVGFont = item->isSVGFontFaceSrc() || item->svgFontFaceElement();
542 if (item->svgFontFaceElement()) {
543 RefPtrWillBeRawPtr<SVGFontFaceElement> fontfaceElement = item->svgFontFaceElement();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineSpacing.cpp 31 #include "core/svg/SVGFontFaceElement.h"
60 SVGFontFaceElement* svgFontFace = toSVGFontData(customFontData)->svgFontFaceElement();
SVGTextRunRenderingContext.cpp 32 #include "core/svg/SVGFontFaceElement.h"
40 static inline const SVGFontData* svgFontAndFontFaceElementForFontData(const SimpleFontData* fontData, SVGFontFaceElement*& fontFace, SVGFontElement*& font)
53 fontFace = svgFontData->svgFontFaceElement();
85 SVGFontFaceElement* fontFaceElement = 0;
194 SVGFontFaceElement* fontFaceElement = 0;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.cpp 84 #include "core/svg/SVGFontFaceElement.h"
153 const WillBeHeapHashSet<RawPtrWillBeMember<SVGFontFaceElement> >& svgFontFaceElements = document.svgExtensions()->svgFontFaceElements();
154 WillBeHeapHashSet<RawPtrWillBeMember<SVGFontFaceElement> >::const_iterator end = svgFontFaceElements.end();
155 for (WillBeHeapHashSet<RawPtrWillBeMember<SVGFontFaceElement> >::const_iterator it = svgFontFaceElements.begin(); it != end; ++it)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_svg.target.darwin-arm.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.darwin-arm64.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.darwin-mips.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.darwin-mips64.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.darwin-x86.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.darwin-x86_64.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.linux-arm.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.linux-arm64.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.linux-mips.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \
webcore_svg.target.linux-mips64.mk 147 third_party/WebKit/Source/core/svg/SVGFontFaceElement.cpp \

Completed in 389 milliseconds

1 2 3 4