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

  /external/webkit/WebCore/svg/
SVGFontFaceNameElement.h 27 class CSSFontFaceSrcValue;
32 PassRefPtr<CSSFontFaceSrcValue> srcValue() const;
SVGFontFaceNameElement.cpp 25 #include "CSSFontFaceSrcValue.h"
35 PassRefPtr<CSSFontFaceSrcValue> SVGFontFaceNameElement::srcValue() const
37 return CSSFontFaceSrcValue::createLocal(getAttribute(SVGNames::nameAttr));
SVGFontFaceUriElement.h 30 class CSSFontFaceSrcValue;
38 PassRefPtr<CSSFontFaceSrcValue> srcValue() const;
SVGFontFaceUriElement.cpp 26 #include "CSSFontFaceSrcValue.h"
50 PassRefPtr<CSSFontFaceSrcValue> SVGFontFaceUriElement::srcValue() const
52 RefPtr<CSSFontFaceSrcValue> src = CSSFontFaceSrcValue::create(getAttribute(XLinkNames::hrefAttr));
SVGFontFaceElement.cpp 29 #include "CSSFontFaceSrcValue.h"
285 list->append(CSSFontFaceSrcValue::createLocal(fontFamily()));
301 // Traverse parsed CSS values and associate CSSFontFaceSrcValue elements with ourselves.
307 if (CSSFontFaceSrcValue* item = static_cast<CSSFontFaceSrcValue*>(srcList->itemWithoutBoundsCheck(i)))
  /external/webkit/WebCore/css/
CSSFontFaceSrcValue.h 39 class CSSFontFaceSrcValue : public CSSValue {
41 static PassRefPtr<CSSFontFaceSrcValue> create(const String& resource)
43 return adoptRef(new CSSFontFaceSrcValue(resource, false));
45 static PassRefPtr<CSSFontFaceSrcValue> createLocal(const String& resource)
47 return adoptRef(new CSSFontFaceSrcValue(resource, true));
50 virtual ~CSSFontFaceSrcValue() { }
72 CSSFontFaceSrcValue(const String& resource, bool local)
CSSFontFaceSrcValue.cpp 27 #include "CSSFontFaceSrcValue.h"
34 bool CSSFontFaceSrcValue::isSVGFontFaceSrc() const
40 bool CSSFontFaceSrcValue::isSupportedFormat() const
58 String CSSFontFaceSrcValue::cssText() const
72 void CSSFontFaceSrcValue::addSubresourceStyleURLs(ListHashSet<KURL>& urls, const CSSStyleSheet* styleSheet)
CSSFontSelector.cpp 35 #include "CSSFontFaceSrcValue.h"
239 CSSFontFaceSrcValue* item = static_cast<CSSFontFaceSrcValue*>(srcList->itemWithoutBoundsCheck(i));
CSSParser.cpp 37 #include "CSSFontFaceSrcValue.h"
    [all...]
  /external/webkit/WebCore/
Android.mk 37 css/CSSFontFaceSrcValue.cpp \

Completed in 1056 milliseconds