Searched refs:m_fontList (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
H A DFontFallbackList.cpp52 m_fontList.clear();
65 unsigned numFonts = m_fontList.size();
67 if (!m_fontList[i].second) {
68 ASSERT(!m_fontList[i].first->isSegmented());
69 fontCache()->releaseFontData(static_cast<const SimpleFontData*>(m_fontList[i].first));
91 if (realizedFontIndex < m_fontList.size())
92 return m_fontList[realizedFontIndex].first; // This fallback font is already in our list.
95 ASSERT(realizedFontIndex == m_fontList.size());
107 m_fontList.append(pair<const FontData*, bool>(result, result->isCustomFont()));
119 m_fontList
[all...]
H A DFont.h239 return m_fontList && m_fontList->loadingCustomFonts();
243 mutable RefPtr<FontFallbackList> m_fontList; member in class:WebCore::Font
256 ASSERT(m_fontList);
257 return m_fontList->primarySimpleFontData(this);
262 ASSERT(m_fontList);
263 return m_fontList->fontDataAt(this, index);
268 ASSERT(m_fontList);
269 return m_fontList->isFixedPitch(this);
274 return m_fontList
[all...]
H A DFont.cpp66 : m_fontList(FontFallbackList::create())
74 m_fontList->setPlatformFont(fontData);
79 , m_fontList(other.m_fontList)
90 m_fontList = other.m_fontList;
105 FontSelector* first = m_fontList ? m_fontList->fontSelector() : 0;
106 FontSelector* second = other.m_fontList ? other.m_fontList
[all...]
H A DFontFallbackList.h73 mutable Vector<pair<const FontData*, bool>, 1> m_fontList; member in class:WebCore::FontFallbackList
H A DFontFastPath.cpp64 GlyphPageTreeNode* node = pageNumber ? m_fontList->m_pages.get(pageNumber) : m_fontList->m_pageZero;
68 m_fontList->m_pages.set(pageNumber, node);
70 m_fontList->m_pageZero = node;
144 m_fontList->m_pages.set(pageNumber, node);
146 m_fontList->m_pageZero = node;
180 m_fontList->m_pages.set(pageNumber, node);
182 m_fontList->m_pageZero = node;

Completed in 85 milliseconds