Home | History | Annotate | Download | only in fonts

Lines Matching refs:page

61         static const size_t size = 256; // Usually covers Latin-1 in a single page.
90 GlyphMetricsPage m_primaryPage; // We optimize for the page that contains glyph indices 0-255.
106 GlyphMetricsPage* page;
109 page = &m_primaryPage;
113 page = m_pages->get(pageNumber);
114 if (page)
115 return page;
118 page = new GlyphMetricsPage;
119 m_pages->set(pageNumber, adoptPtr(page));
122 // Fill in the whole page with the unknown glyph information.
124 page->setMetricsForIndex(i, unknownMetrics());
126 return page;