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

  /external/webkit/Source/WebCore/rendering/
RootInlineBox.cpp 582 Vector<const SimpleFontData*>* usedFonts = 0;
586 usedFonts = it == textBoxDataMap.end() ? 0 : &it->second.first;
596 if (usedFonts && !usedFonts->isEmpty() && (includeFont || (box->renderer()->style(m_firstLine)->lineHeight().isNegative() && includeLeading))) {
597 usedFonts->append(box->renderer()->style(m_firstLine)->font().primaryFont());
598 for (size_t i = 0; i < usedFonts->size(); ++i) {
599 const FontMetrics& fontMetrics = usedFonts->at(i)->fontMetrics();
    [all...]
InlineFlowBox.cpp 433 const Vector<const SimpleFontData*>* usedFonts = 0;
436 usedFonts = it == textBoxDataMap.end() ? 0 : &it->second.first;
439 if (usedFonts) {
440 for (size_t i = 0; i < usedFonts->size(); ++i) {
441 if (usedFonts->at(i)->hasVerticalGlyphs())
    [all...]

Completed in 42 milliseconds