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

  /external/webkit/WebCore/rendering/
RenderText.cpp 432 ALWAYS_INLINE int RenderText::widthFromCache(const Font& f, int start, int len, int xPos, HashSet<const SimpleFontData*>* fallbackFonts) const
462 return f.width(TextRun(text()->characters() + start, len, allowTabs(), xPos), fallbackFonts);
575 HashSet<const SimpleFontData*> fallbackFonts;
576 calcPrefWidths(leadWidth, fallbackFonts);
577 if (fallbackFonts.isEmpty())
581 void RenderText::calcPrefWidths(int leadWidth, HashSet<const SimpleFontData*>& fallbackFonts)
655 currMaxWidth += widthFromCache(f, lastWordBoundary, i - lastWordBoundary, leadWidth + currMaxWidth, &fallbackFonts);
678 int w = widthFromCache(f, i, wordLen, leadWidth + currMaxWidth, &fallbackFonts);
684 currMaxWidth += widthFromCache(f, lastWordBoundary, j - lastWordBoundary, leadWidth + currMaxWidth, &fallbackFonts);
    [all...]
RenderBlockLineLayout.cpp 360 HashSet<const SimpleFontData*> fallbackFonts;
361 r->m_box->setWidth(rt->width(r->m_start, r->m_stop - r->m_start, totWidth, firstLine, &fallbackFonts));
362 if (!fallbackFonts.isEmpty()
368 static_cast<InlineTextBox*>(r->m_box)->setFallbackFonts(fallbackFonts);
    [all...]

Completed in 1834 milliseconds