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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFontData.cpp 226 bool SVGFontData::fillSVGGlyphPage(GlyphPage* pageToFill, unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData) const
238 return fillBMPGlyphs(fontElement, pageToFill, offset, length, buffer, fontData);
241 return fillNonBMPGlyphs(fontElement, pageToFill, offset, length, buffer, fontData);
244 bool SVGFontData::fillBMPGlyphs(SVGFontElement* fontElement, GlyphPage* pageToFill, unsigned offset, unsigned length, UChar* buffer, const SimpleFontData* fontData) const
252 pageToFill->setGlyphDataForIndex(offset + i, 0, 0);
261 pageToFill->setGlyphDataForIndex(offset + i, glyphs.first().tableEntry, fontData);
268 bool SVGFontData::fillNonBMPGlyphs(SVGFontElement* fontElement, GlyphPage* pageToFill, unsigned offset, unsigned length, UChar* buffer, const SimpleFontData* fontData) const
277 pageToFill->setGlyphDataForIndex(offset + i, 0, 0);
286 pageToFill->setGlyphDataForIndex(offset + i, glyphs.first().tableEntry, fontData);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
GlyphPageTreeNode.cpp 121 static bool fill(GlyphPage* pageToFill, unsigned offset, unsigned length, UChar* buffer, unsigned bufferLength, const SimpleFontData* fontData)
125 return fontData->customFontData()->fillSVGGlyphPage(pageToFill, offset, length, buffer, bufferLength, fontData);
127 bool hasGlyphs = pageToFill->fill(offset, length, buffer, bufferLength, fontData);
130 fontData->verticalData()->substituteWithVerticalGlyphs(fontData, pageToFill, offset, length);
220 GlyphPage* pageToFill = m_page.get();
239 pageToFill = scratchPage.get();
245 pageToFill->setGlyphDataForIndex(i, 0, 0);
249 haveGlyphs |= fill(pageToFill, from, to - from, buffer + from * (start < 0x10000 ? 1 : 2), (to - from) * (start < 0x10000 ? 1 : 2), range.fontData().get());
253 if (!m_page->glyphAt(j) && pageToFill->glyphAt(j))
254 m_page->setGlyphDataForIndex(j, pageToFill->glyphDataForIndex(j))
    [all...]

Completed in 35 milliseconds