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

  /external/webkit/WebCore/platform/graphics/
Font.cpp 76 : m_fontList(FontFallbackList::create())
82 m_fontList->setPlatformFont(fontData);
87 , m_fontList(other.m_fontList)
97 m_fontList = other.m_fontList;
112 if ((m_fontList && m_fontList->loadingCustomFonts()) ||
113 (other.m_fontList && other.m_fontList->loadingCustomFonts())
    [all...]
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()));
136 m_fontList.append(pair<const FontData*, bool>(fontData, fontData->isCustomFont()))
    [all...]
FontFastPath.cpp 62 GlyphPageTreeNode* node = pageNumber ? m_fontList->m_pages.get(pageNumber) : m_fontList->m_pageZero;
66 m_fontList->m_pages.set(pageNumber, node);
68 m_fontList->m_pageZero = node;
87 m_fontList->m_pages.set(pageNumber, node);
89 m_fontList->m_pageZero = node;
123 m_fontList->m_pages.set(pageNumber, node);
125 m_fontList->m_pageZero = node;
FontFallbackList.h 77 mutable Vector<pair<const FontData*, bool>, 1> m_fontList;
Font.h 207 mutable RefPtr<FontFallbackList> m_fontList;

Completed in 23 milliseconds