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

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
ComplexTextController.cpp 653 FloatRect glyphBounds = fontData->boundsForGlyph(glyph);
654 glyphBounds.move(glyphOrigin.x, glyphOrigin.y);
655 m_minGlyphBoundingBoxX = min(m_minGlyphBoundingBoxX, glyphBounds.x());
656 m_maxGlyphBoundingBoxX = max(m_maxGlyphBoundingBoxX, glyphBounds.maxX());
657 m_minGlyphBoundingBoxY = min(m_minGlyphBoundingBoxY, glyphBounds.y());
658 m_maxGlyphBoundingBoxY = max(m_maxGlyphBoundingBoxY, glyphBounds.maxY());
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthCache.h 48 IntRectExtent glyphBounds;
Font.cpp 140 static inline void updateGlyphOverflowFromBounds(const IntRectExtent& glyphBounds,
144 glyphBounds.top() - (glyphOverflow->computeBounds ? 0 : fontMetrics.ascent()));
146 glyphBounds.bottom() - (glyphOverflow->computeBounds ? 0 : fontMetrics.descent()));
147 glyphOverflow->left = glyphBounds.left();
148 glyphOverflow->right = glyphBounds.right();
174 updateGlyphOverflowFromBounds(cacheEntry->glyphBounds, fontMetrics(), glyphOverflow);
179 IntRectExtent glyphBounds;
181 result = floatWidthForComplexText(run, fallbackFonts, &glyphBounds);
184 glyphOverflow || isCacheable ? &glyphBounds : 0);
188 cacheEntry->glyphBounds = glyphBounds
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/harfbuzz/
HarfBuzzShaper.cpp     [all...]
  /frameworks/minikin/libs/minikin/
Layout.cpp 755 MinikinRect glyphBounds;
756 ctx->paint.font->GetBounds(&glyphBounds, glyph_ix, ctx->paint);
757 glyphBounds.offset(x + xoff, y + yoff);
758 mBounds.join(glyphBounds);

Completed in 227 milliseconds