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

  /external/skia/legacy/src/ports/
FontHostConfiguration_android.cpp 202 void getFallbackFontFamilies(SkTDArray<FontFamily*> &fallbackFonts) {
204 parseConfigFile(FALLBACK_FONTS_FILE, fallbackFonts);
216 *fallbackFonts.append() = family;
220 *fallbackFonts.insert(currentOrder++) = family;
225 *fallbackFonts.insert(order) = family;
236 SkTDArray<FontFamily*> fallbackFonts;
239 getFallbackFontFamilies(fallbackFonts);
242 for (int i = 0; i < fallbackFonts.count(); ++i) {
243 *fontFamilies.append() = fallbackFonts[i];
  /external/skia/src/ports/
FontHostConfiguration_android.cpp 192 void getFallbackFontFamilies(SkTDArray<FontFamily*> &fallbackFonts) {
194 parseConfigFile(FALLBACK_FONTS_FILE, fallbackFonts);
206 *fallbackFonts.append() = family;
210 *fallbackFonts.insert(currentOrder++) = family;
215 *fallbackFonts.insert(order) = family;
226 SkTDArray<FontFamily*> fallbackFonts;
229 getFallbackFontFamilies(fallbackFonts);
232 for (int i = 0; i < fallbackFonts.count(); ++i) {
233 *fontFamilies.append() = fallbackFonts[i];
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
FontLoader.java 92 List<FontInfo> fallbackFonts = handler.getFontList();
94 return new FontLoader(fontOsLocation, systemFonts, fallbackFonts);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCacheWin.cpp 325 static AtomicString fallbackFonts[] = {
333 for (size_t i = 0; i < WTF_ARRAY_LENGTH(fallbackFonts); ++i) {
334 if (simpleFont = getCachedFontData(fontDescription, fallbackFonts[i])) {
335 fallbackFontName = fallbackFonts[i];
  /external/webkit/Source/WebCore/rendering/
RenderText.cpp 613 ALWAYS_INLINE float RenderText::widthFromCache(const Font& f, int start, int len, float xPos, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
651 return f.width(TextRun(text()->characters() + start, len, allowTabs(), xPos), fallbackFonts, glyphOverflow);
766 HashSet<const SimpleFontData*> fallbackFonts;
768 computePreferredLogicalWidths(leadWidth, fallbackFonts, glyphOverflow);
769 if (fallbackFonts.isEmpty() && !glyphOverflow.left && !glyphOverflow.right && !glyphOverflow.top && !glyphOverflow.bottom)
773 void RenderText::computePreferredLogicalWidths(float leadWidth, HashSet<const SimpleFontData*>& fallbackFonts, GlyphOverflow& glyphOverflow)
850 currMaxWidth += widthFromCache(f, lastWordBoundary, i - lastWordBoundary, leadWidth + currMaxWidth, &fallbackFonts, &glyphOverflow);
875 float w = widthFromCache(f, i, wordLen, leadWidth + currMaxWidth, &fallbackFonts, &glyphOverflow);
883 currMaxWidth += widthFromCache(f, lastWordBoundary, j - lastWordBoundary, leadWidth + currMaxWidth, &fallbackFonts, &glyphOverflow);
    [all...]
RenderBlockLineLayout.cpp 463 HashSet<const SimpleFontData*> fallbackFonts;
485 r->m_box->setLogicalWidth(rt->width(r->m_start, r->m_stop - r->m_start, totalLogicalWidth, firstLine, &fallbackFonts, &glyphOverflow) + hyphenWidth);
486 if (!fallbackFonts.isEmpty()) {
490 copyToVector(fallbackFonts, it->second.first);
    [all...]

Completed in 493 milliseconds