Lines Matching refs:aBounding
258 void GraphiteFontAdaptor::getGlyphMetrics(gr::gid16 nGlyphId, gr::Rect & aBounding, gr::Point & adv… in getGlyphMetrics() argument
266 aBounding.right = aBounding.left = metric.GetOffset().X(); in getGlyphMetrics()
267 aBounding.bottom = aBounding.top = -metric.GetOffset().Y(); in getGlyphMetrics()
268 aBounding.right += metric.GetSize().Width(); in getGlyphMetrics()
269 aBounding.bottom -= metric.GetSize().Height(); in getGlyphMetrics()
282 aBounding = gm_itr->second.first; in getGlyphMetrics()
293 aBounding.top = aBounding.bottom = aBounding.left = aBounding.right = 0; in getGlyphMetrics()
301 aBounding.top = aBounding.bottom = aBounding.left = aBounding.right = 0; in getGlyphMetrics()
315 aBounding.top = aBounding.bottom = fix26_6(gm.horiBearingY); in getGlyphMetrics()
316 aBounding.bottom -= fix26_6(gm.height); in getGlyphMetrics()
317 aBounding.left = aBounding.right = fix26_6(gm.horiBearingX); in getGlyphMetrics()
318 aBounding.right += fix26_6(gm.width); in getGlyphMetrics()
323 maGlyphMetricMap[nGlyphId] = std::make_pair(aBounding, advances); in getGlyphMetrics()