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

  /external/webkit/Source/WebCore/platform/graphics/
FontFallbackList.cpp 52 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.append(pair<const FontData*, bool>(fontData, fontData->isCustomFont()))
    [all...]
Font.h 239 return m_fontList && m_fontList->loadingCustomFonts();
243 mutable RefPtr<FontFallbackList> m_fontList;
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 ? m_fontList->fontSelector() : 0
    [all...]
Font.cpp 66 : 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->fontSelector() : 0
    [all...]
FontFallbackList.h 73 mutable Vector<pair<const FontData*, bool>, 1> m_fontList;
FontFastPath.cpp 64 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 379 milliseconds