OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CSSFontFace
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/css/
CSSFontFace.cpp
27
#include "
CSSFontFace
.h"
37
CSSFontFace
::~
CSSFontFace
()
42
bool
CSSFontFace
::isLoaded() const
52
bool
CSSFontFace
::isValid() const
64
void
CSSFontFace
::addedToSegmentedFontFace(CSSSegmentedFontFace* segmentedFontFace)
69
void
CSSFontFace
::removedFromSegmentedFontFace(CSSSegmentedFontFace* segmentedFontFace)
74
void
CSSFontFace
::addSource(CSSFontFaceSource* source)
80
void
CSSFontFace
::fontLoaded(CSSFontFaceSource* source)
96
// the same font selector, so it's wasteful to store it in the
CSSFontFace
[
all
...]
CSSSegmentedFontFace.h
37
class
CSSFontFace
;
50
void fontLoaded(
CSSFontFace
*);
52
void appendFontFace(PassRefPtr<
CSSFontFace
>);
64
Vector<RefPtr<
CSSFontFace
>, 1> m_fontFaces;
CSSFontFace.h
43
class
CSSFontFace
: public RefCounted<
CSSFontFace
> {
45
static PassRefPtr<
CSSFontFace
> create(FontTraitsMask traitsMask, bool isLocalFallback = false) { return adoptRef(new
CSSFontFace
(traitsMask, isLocalFallback)); }
46
~
CSSFontFace
();
89
CSSFontFace
(FontTraitsMask traitsMask, bool isLocalFallback)
CSSFontFaceSource.h
37
class
CSSFontFace
;
57
void setFontFace(
CSSFontFace
* face) { m_face = face; }
75
CSSFontFace
* m_face; // Our owning font face.
CSSFontSelector.h
38
class
CSSFontFace
;
75
HashMap<String, Vector<RefPtr<
CSSFontFace
> >*, CaseFoldingHash> m_fontFaces;
76
HashMap<String, Vector<RefPtr<
CSSFontFace
> >*, CaseFoldingHash> m_locallyInstalledFontFaces;
CSSSegmentedFontFace.cpp
29
#include "
CSSFontFace
.h"
73
void CSSSegmentedFontFace::fontLoaded(
CSSFontFace
*)
78
void CSSSegmentedFontFace::appendFontFace(PassRefPtr<
CSSFontFace
> fontFace)
108
const Vector<
CSSFontFace
::UnicodeRange>& ranges = m_fontFaces[i]->ranges();
CSSFontSelector.cpp
31
#include "
CSSFontFace
.h"
229
// Each item in the src property's list is a single CSSFontFaceSource. Put them all into a
CSSFontFace
.
230
RefPtr<
CSSFontFace
> fontFace;
262
fontFace =
CSSFontFace
::create(static_cast<FontTraitsMask>(traitsMask));
320
Vector<RefPtr<
CSSFontFace
> >* familyFontFaces = m_fontFaces.get(familyName);
322
familyFontFaces = new Vector<RefPtr<
CSSFontFace
> >;
326
Vector<RefPtr<
CSSFontFace
> >* familyLocallyInstalledFaces;
332
familyLocallyInstalledFaces = new Vector<RefPtr<
CSSFontFace
> >;
336
RefPtr<
CSSFontFace
> locallyInstalledFontFace =
CSSFontFace
::create(static_cast<FontTraitsMask>(locallyInstalledFontsTraitsMasks[i]), true)
[
all
...]
CSSStyleSelector.h
43
class
CSSFontFace
;
/external/webkit/Source/WebCore/
Android.mk
36
css/
CSSFontFace
.cpp \
[
all
...]
Completed in 1342 milliseconds