Home
last modified time | relevance | path

Searched refs:CSSFontFace (Results 1 – 17 of 17) sorted by relevance

/external/webkit/WebCore/css/
DCSSFontFace.cpp37 CSSFontFace::~CSSFontFace() in ~CSSFontFace()
42 bool CSSFontFace::isLoaded() const in isLoaded()
52 bool CSSFontFace::isValid() const in isValid()
64 void CSSFontFace::addedToSegmentedFontFace(CSSSegmentedFontFace* segmentedFontFace) in addedToSegmentedFontFace()
69 void CSSFontFace::removedFromSegmentedFontFace(CSSSegmentedFontFace* segmentedFontFace) in removedFromSegmentedFontFace()
74 void CSSFontFace::addSource(CSSFontFaceSource* source) in addSource()
80 void CSSFontFace::fontLoaded(CSSFontFaceSource* source) in fontLoaded()
101 SimpleFontData* CSSFontFace::getFontData(const FontDescription& fontDescription, bool syntheticBold… in getFontData()
DCSSFontFace.h43 class CSSFontFace : public RefCounted<CSSFontFace> {
45 …static PassRefPtr<CSSFontFace> create(FontTraitsMask traitsMask) { return adoptRef(new CSSFontFace in create()
46 ~CSSFontFace();
83 CSSFontFace(FontTraitsMask traitsMask) in CSSFontFace() function
DCSSFontSelector.cpp230 RefPtr<CSSFontFace> fontFace; in addFontFaceRule()
264 fontFace = CSSFontFace::create(static_cast<FontTraitsMask>(traitsMask)); in addFontFaceRule()
329 Vector<RefPtr<CSSFontFace> >* familyFontFaces = m_fontFaces.get(familyName); in addFontFaceRule()
331 familyFontFaces = new Vector<RefPtr<CSSFontFace> >; in addFontFaceRule()
335 Vector<RefPtr<CSSFontFace> >* familyLocallyInstalledFaces; in addFontFaceRule()
341 familyLocallyInstalledFaces = new Vector<RefPtr<CSSFontFace> >; in addFontFaceRule()
345 …RefPtr<CSSFontFace> locallyInstalledFontFace = CSSFontFace::create(static_cast<FontTraitsMask>(loc… in addFontFaceRule()
404 static inline bool compareFontFaces(CSSFontFace* first, CSSFontFace* second) in compareFontFaces()
481 Vector<RefPtr<CSSFontFace> >* familyFontFaces = m_fontFaces.get(family); in getFontData()
503 Vector<CSSFontFace*, 32> candidateFontFaces; in getFontData()
[all …]
DCSSSegmentedFontFace.h37 class CSSFontFace; variable
52 void fontLoaded(CSSFontFace*);
54 void appendFontFace(PassRefPtr<CSSFontFace>);
65 Vector<RefPtr<CSSFontFace>, 1> m_fontFaces;
DCSSFontFaceSource.h41 class CSSFontFace; variable
56 void setFontFace(CSSFontFace* face) { m_face = face; } in setFontFace()
72 CSSFontFace* m_face; // Our owning font face.
DCSSFontSelector.h37 class CSSFontFace; variable
70 HashMap<String, Vector<RefPtr<CSSFontFace> >*, CaseFoldingHash> m_fontFaces;
71 HashMap<String, Vector<RefPtr<CSSFontFace> >*, CaseFoldingHash> m_locallyInstalledFontFaces;
DCSSSegmentedFontFace.cpp82 void CSSSegmentedFontFace::fontLoaded(CSSFontFace*) in fontLoaded() argument
87 void CSSSegmentedFontFace::appendFontFace(PassRefPtr<CSSFontFace> fontFace) in appendFontFace()
115 const Vector<CSSFontFace::UnicodeRange>& ranges = m_fontFaces[i]->ranges(); in getFontData()
DCSSStyleSelector.h40 class CSSFontFace; variable
/external/webkit/WebCore/
DAndroid.mk34 css/CSSFontFace.cpp \
DWebCore.pro376 css/CSSFontFace.cpp \
1070 css/CSSFontFace.h \
DWebCore.gypi903 'css/CSSFontFace.cpp',
904 'css/CSSFontFace.h',
DGNUmakefile.am552 WebCore/css/CSSFontFace.cpp \
553 WebCore/css/CSSFontFace.h \
DChangeLog-2008-08-108611 * css/CSSFontFace.h:
8612 Made CSSFontFace store descriptors from the @font-face rule, as follows:
8613 (WebCore::CSSFontFace::create): Added a FontTraitsMask argument.
8614 (WebCore::CSSFontFace::traitsMask): Added this accessor.
8615 (WebCore::CSSFontFace::addRange): Added.
8616 (WebCore::CSSFontFace::ranges): Added.
8617 (WebCore::CSSFontFace::UnicodeRange::UnicodeRange):
8618 (WebCore::CSSFontFace::UnicodeRange::from):
8619 (WebCore::CSSFontFace::UnicodeRange::to):
8620 (WebCore::CSSFontFace::CSSFontFace): Added a FontTraitsMask and a vector
[all …]
DChangeLog-2007-10-141078 * css/CSSFontFace.cpp: Added.
1079 (WebCore::CSSFontFace::CSSFontFace):
1080 (WebCore::CSSFontFace::~CSSFontFace):
1081 (WebCore::CSSFontFace::isLoaded):
1082 (WebCore::CSSFontFace::isValid):
1083 (WebCore::CSSFontFace::addSource):
1084 (WebCore::CSSFontFace::fontLoaded):
1085 (WebCore::CSSFontFace::getFontData):
1086 * css/CSSFontFace.h: Added.
1087 …A CSSFontFace is a composite object. It consists of multiple font-face sources, where each source…
[all …]
DChangeLog-2010-01-2920879 The loading of a font resource caused a CSSFontFace that had the resource in one of its
20883 corresponding FontFallbackLists were not in the loading state. The fix is for CSSFontFace to
20886 * css/CSSFontFace.cpp:
20887 (WebCore::CSSFontFace::fontLoaded): Bail out if the loaded source is not the active source.
20888 (WebCore::CSSFontFace::getFontData): Set m_activeSource to the source that supplied the
20890 * css/CSSFontFace.h:
20891 (WebCore::CSSFontFace::CSSFontFace): Initialize m_activeSource.
27483 * css/CSSStyleSelector.cpp: Removed include CSSFontFace.h,
DChangeLog-2009-06-1666256 before another CSSSegmentedFontFace using the same CSSFontFace had done
66257 so. The fix is to let all CSSSegmentedFontFaces using the CSSFontFace
66260 * css/CSSFontFace.cpp:
66261 (WebCore::CSSFontFace::fontLoaded):
/external/webkit/WebCore/WebCore.xcodeproj/
Dproject.pbxproj4318 …4B4D50CB4298A005F2B62 /* CSSFontFace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC64B4CD0C…
4319 …64B4D60CB4298A005F2B62 /* CSSFontFace.h in Headers */ = {isa = PBXBuildFile; fileRef = BC64B4CE0CB…
9572 …98A005F2B62 /* CSSFontFace.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
9573 …B4298A005F2B62 /* CSSFontFace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
15405 BC64B4CD0CB4298A005F2B62 /* CSSFontFace.cpp */,
15406 BC64B4CE0CB4298A005F2B62 /* CSSFontFace.h */,
16228 BC64B4D60CB4298A005F2B62 /* CSSFontFace.h in Headers */,
18911 BC64B4D50CB4298A005F2B62 /* CSSFontFace.cpp in Sources */,