HomeSort by relevance Sort by last modified time
    Searched full:fallbackfonts (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/third_party/skia/src/ports/
SkFontConfigParser_android.cpp 229 static void getFallbackFontFamilies(SkTDArray<FontFamily*> &fallbackFonts) {
231 parseConfigFile(FALLBACK_FONTS_FILE, fallbackFonts);
243 *fallbackFonts.append() = family;
247 *fallbackFonts.insert(currentOrder++) = family;
252 *fallbackFonts.insert(order) = family;
267 SkTDArray<FontFamily*> fallbackFonts;
268 getFallbackFontFamilies(fallbackFonts);
269 for (int i = 0; i < fallbackFonts.count(); ++i) {
270 fallbackFonts[i]->fIsFallbackFont = true;
271 *fontFamilies.append() = fallbackFonts[i]
    [all...]
  /external/skia/src/ports/
SkFontConfigParser_android.cpp 229 static void getFallbackFontFamilies(SkTDArray<FontFamily*> &fallbackFonts) {
231 parseConfigFile(FALLBACK_FONTS_FILE, fallbackFonts);
243 *fallbackFonts.append() = family;
247 *fallbackFonts.insert(currentOrder++) = family;
252 *fallbackFonts.insert(order) = family;
267 SkTDArray<FontFamily*> fallbackFonts;
268 getFallbackFontFamilies(fallbackFonts);
269 for (int i = 0; i < fallbackFonts.count(); ++i) {
270 fallbackFonts[i]->fIsFallbackFont = true;
271 *fontFamilies.append() = fallbackFonts[i]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBR.h 43 virtual float width(unsigned /*from*/, unsigned /*len*/, const Font&, float /*xPos*/, HashSet<const SimpleFontData*>* = 0 /*fallbackFonts*/ , GlyphOverflow* = 0) const { return 0; }
44 virtual float width(unsigned /*from*/, unsigned /*len*/, float /*xpos*/, bool = false /*firstLine*/, HashSet<const SimpleFontData*>* = 0 /*fallbackFonts*/, GlyphOverflow* = 0) const { return 0; }
RenderCombineText.cpp 58 float RenderCombineText::width(unsigned from, unsigned length, const Font& font, float xPosition, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
66 return RenderText::width(from, length, font, xPosition, fallbackFonts, glyphOverflow);
RenderCombineText.h 42 virtual float width(unsigned from, unsigned length, const Font&, float xPosition, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
RenderText.h 83 virtual float width(unsigned from, unsigned len, const Font&, float xPos, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
84 virtual float width(unsigned from, unsigned len, float xPos, bool firstLine = false, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
160 void computePreferredLogicalWidths(float leadWidth, HashSet<const SimpleFontData*>& fallbackFonts, GlyphOverflow&);
175 float widthFromCache(const Font&, int start, int len, float xPos, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow*) const;
RenderText.cpp 718 ALWAYS_INLINE float RenderText::widthFromCache(const Font& f, int start, int len, float xPos, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
765 return f.width(run, fallbackFonts, glyphOverflow);
    [all...]
RenderBlockLineLayout.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
ComplexTextController.cpp 57 float width(unsigned from, unsigned len, HashSet<const SimpleFontData*>* fallbackFonts)
59 m_controller->advance(from, 0, ByWholeGlyphs, fallbackFonts);
63 m_controller->advance(from + len, 0, ByWholeGlyphs, fallbackFonts);
97 float Font::width(TextLayout& layout, unsigned from, unsigned len, HashSet<const SimpleFontData*>* fallbackFonts)
99 return layout.width(from, len, fallbackFonts);
116 ComplexTextController::ComplexTextController(const Font* font, const TextRun& run, bool mayUseNaturalWritingDirection, HashSet<const SimpleFontData*>* fallbackFonts, bool forTextEmphasis)
134 , m_fallbackFonts(fallbackFonts)
489 void ComplexTextController::advance(unsigned offset, GlyphBuffer* glyphBuffer, GlyphIterationStyle iterationStyle, HashSet<const SimpleFontData*>* fallbackFonts)
514 if (fallbackFonts && complexTextRun.fontData() != m_font.primaryFont())
515 fallbackFonts->add(complexTextRun.fontData())
    [all...]
ComplexTextController.h 54 ComplexTextController(const Font*, const TextRun&, bool mayUseNaturalWritingDirection = false, HashSet<const SimpleFontData*>* fallbackFonts = 0, bool forTextEmphasis = false);
57 void advance(unsigned to, GlyphBuffer* = 0, GlyphIterationStyle = IncludePartialGlyphs, HashSet<const SimpleFontData*>* fallbackFonts = 0);
FontComplexTextMac.cpp 131 float Font::floatWidthForComplexText(const TextRun& run, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
138 ComplexTextController controller(this, run, true, fallbackFonts);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Font.h 104 float width(const TextRun&, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
109 static float width(TextLayout&, unsigned from, unsigned len, HashSet<const SimpleFontData*>* fallbackFonts = 0);
180 float floatWidthForSimpleText(const TextRun&, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
193 float floatWidthForComplexText(const TextRun&, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
WidthIterator.h 43 WidthIterator(const Font*, const TextRun&, HashSet<const SimpleFontData*>* fallbackFonts = 0, bool accountForGlyphBounds = false, bool forTextEmphasis = false);
Font.cpp 213 float Font::width(const TextRun& run, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
219 fallbackFonts = 0;
233 result = floatWidthForComplexText(run, fallbackFonts, glyphOverflow);
235 result = floatWidthForSimpleText(run, fallbackFonts, glyphOverflow);
237 if (cacheEntry && (!fallbackFonts || fallbackFonts->isEmpty()))
WidthIterator.cpp 38 WidthIterator::WidthIterator(const Font* font, const TextRun& run, HashSet<const SimpleFontData*>* fallbackFonts, bool accountForGlyphBounds, bool forTextEmphasis)
46 , m_fallbackFonts(fallbackFonts)
FontFastPath.cpp 534 float Font::floatWidthForSimpleText(const TextRun& run, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
536 WidthIterator it(this, run, fallbackFonts, glyphOverflow);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
FontLoader.java 94 List<FontInfo> fallbackFonts = handler.getFontList();
96 return new FontLoader(fontOsLocation, systemFonts, fallbackFonts);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
FontHarfBuzz.cpp 196 float Font::floatWidthForComplexText(const TextRun& run, HashSet<const SimpleFontData*>* /* fallbackFonts */, GlyphOverflow* /* glyphOverflow */) const
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
FontChromiumWin.cpp 202 float Font::floatWidthForComplexText(const TextRun& run, HashSet<const SimpleFontData*>* /* fallbackFonts */, GlyphOverflow* /* glyphOverflow */) const

Completed in 807 milliseconds