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

  /external/webkit/Source/WebCore/rendering/
RootInlineBox.cpp 583 GlyphOverflow* glyphOverflow = 0;
587 glyphOverflow = it == textBoxDataMap.end() ? 0 : &it->second.second;
642 if (includeGlyphsForBox(box) && glyphOverflow && glyphOverflow->computeBounds) {
643 setAscentAndDescent(ascent, descent, glyphOverflow->top, glyphOverflow->bottom, ascentDescentSet);
644 affectsAscent = glyphOverflow->top - box->logicalTop() > 0;
645 affectsDescent = glyphOverflow->bottom + box->logicalTop() > 0;
646 glyphOverflow->top = min(glyphOverflow->top, max(0, glyphOverflow->top - box->renderer()->style(m_firstLine)->fo (…)
    [all...]
InlineFlowBox.cpp     [all...]
RenderText.cpp 578 ALWAYS_INLINE float RenderText::widthFromCache(const Font& f, int start, int len, float xPos, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* glyphOverflow) const
586 if (f.isFixedPitch() && !f.isSmallCaps() && m_isAllASCII && (!glyphOverflow || !glyphOverflow->computeBounds)) {
616 return f.width(TextRun(text()->characters() + start, len, allowTabs(), xPos), fallbackFonts, glyphOverflow);
732 GlyphOverflow glyphOverflow;
733 computePreferredLogicalWidths(leadWidth, fallbackFonts, glyphOverflow);
734 if (fallbackFonts.isEmpty() && !glyphOverflow.left && !glyphOverflow.right && !glyphOverflow.top && !glyphOverflow.bottom
    [all...]
RenderBlockLineLayout.cpp 464 GlyphOverflow glyphOverflow;
477 glyphOverflow.computeBounds = true;
485 r->m_box->setLogicalWidth(rt->width(r->m_start, r->m_stop - r->m_start, totalLogicalWidth, firstLine, &fallbackFonts, &glyphOverflow) + hyphenWidth);
488 GlyphOverflowAndFallbackFontsMap::iterator it = textBoxDataMap.add(static_cast<InlineTextBox*>(r->m_box), make_pair(Vector<const SimpleFontData*>(), GlyphOverflow())).first;
493 if ((glyphOverflow.top || glyphOverflow.bottom || glyphOverflow.left || glyphOverflow.right)) {
495 GlyphOverflowAndFallbackFontsMap::iterator it = textBoxDataMap.add(static_cast<InlineTextBox*>(r->m_box), make_pair(Vector<const SimpleFontData*>(), GlyphOverflow())).first
    [all...]

Completed in 62 milliseconds