OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isCustomFont
(Results
1 - 21
of
21
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/
SimpleFontData.cpp
50
SimpleFontData::SimpleFontData(const FontPlatformData& platformData, bool
isCustomFont
, bool isLoading, bool isTextOrientationFallback)
55
, m_isCustomFont(
isCustomFont
)
193
if (!
isCustomFont
())
210
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
214
m_derivedFontData->verticalRightOrientation = new SimpleFontData(verticalRightPlatformData,
isCustomFont
(), false, true);
222
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
224
m_derivedFontData->uprightOrientation = new SimpleFontData(m_platformData,
isCustomFont
(), false, true);
231
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
233
m_derivedFontData->brokenIdeograph = new SimpleFontData(m_platformData,
isCustomFont
(), false);
244
if (
isCustomFont
())
[
all
...]
FontData.h
50
virtual bool
isCustomFont
() const = 0;
SegmentedFontData.h
70
virtual bool
isCustomFont
() const;
FontFallbackList.cpp
107
m_fontList.append(pair<const FontData*, bool>(result, result->
isCustomFont
()));
119
m_fontList.append(pair<const FontData*, bool>(fontData, fontData->
isCustomFont
()));
SegmentedFontData.cpp
70
bool SegmentedFontData::
isCustomFont
() const
SimpleFontData.h
74
SimpleFontData(const FontPlatformData&, bool
isCustomFont
= false, bool isLoading = false, bool isTextOrientationFallback = false);
138
virtual bool
isCustomFont
() const { return m_isCustomFont; }
FontCache.cpp
292
ASSERT(!fontData->
isCustomFont
());
GlyphPageTreeNode.cpp
328
if (fontData && fontData->
isCustomFont
()) {
/external/webkit/Source/WebCore/platform/graphics/haiku/
SimpleFontDataHaiku.cpp
74
return new SimpleFontData(fontPlatformData,
isCustomFont
(), false);
80
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
90
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
/external/webkit/Source/WebCore/platform/graphics/freetype/
SimpleFontDataFreeType.cpp
93
isCustomFont
(), false);
99
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
110
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
/external/webkit/Source/WebCore/platform/graphics/pango/
SimpleFontDataPango.cpp
98
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
108
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
135
if (
isCustomFont
()) {
/external/webkit/Source/WebCore/platform/graphics/android/
FontDataAndroid.cpp
76
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
86
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
/external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp
114
if (
isCustomFont
()) {
124
return new SimpleFontData(FontPlatformData(hfont, scaledSize, m_platformData.syntheticBold(), m_platformData.syntheticOblique(), m_platformData.useGDI()),
isCustomFont
(), false);
130
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
140
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
150
if (
isCustomFont
())
185
if (
isCustomFont
()) {
SimpleFontDataCGWin.cpp
72
if (!
isCustomFont
()) {
/external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp
122
return new SimpleFontData(FontPlatformData(hfont, scaledSize),
isCustomFont
(), false);
128
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
138
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
SimpleFontDataLinux.cpp
161
return new SimpleFontData(FontPlatformData(m_platformData, scaledSize),
isCustomFont
(), false);
167
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
177
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
/external/webkit/Source/WebCore/platform/graphics/wx/
SimpleFontDataWx.cpp
98
return new SimpleFontData(platformData,
isCustomFont
(), false);
104
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
114
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
/external/webkit/Source/WebCore/platform/graphics/wince/
SimpleFontDataWinCE.cpp
79
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
89
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
/external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm
352
if (!
isCustomFont
() && m_derivedFontData) {
374
if (
isCustomFont
()) {
411
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
421
m_derivedFontData = DerivedFontData::create(
isCustomFont
());
/external/skia/src/ports/
SkFontHost_android.cpp
549
bool
isCustomFont
= !((FamilyTypeface*)face)->isSysFont();
550
stream->writeBool(
isCustomFont
);
552
if (
isCustomFont
) {
590
bool
isCustomFont
= stream->readBool();
592
if (
isCustomFont
) {
/external/webkit/Source/WebCore/svg/
SVGFont.cpp
214
ASSERT(fontData->
isCustomFont
());
Completed in 1325 milliseconds