Lines Matching refs:aGlyphId
624 sal_GlyphId aGlyphId( cChar); // printer glyphs = unicode in LayoutText() local
641 if( (it->first == aOldGlyphId) && (it->second == aGlyphId) ) in LayoutText()
658 aOldGlyphId = aGlyphId; in LayoutText()
664 aGlyphId |= GF_ISCHAR; in LayoutText()
665 aPrevItem = GlyphItem( nCharPos, aGlyphId, aNewPos, nGlyphFlags, nGlyphWidth ); in LayoutText()
771 sal_GlyphId aGlyphId = aGlyphAry[i] & (GF_IDXMASK | GF_ROTMASK); in DrawPrinterLayout() local
775 aUnicodes[i] = (aGlyphAry[i] & GF_ISCHAR) ? aGlyphId : 0; in DrawPrinterLayout()
776 aGlyphAry[i] = aGlyphId; in DrawPrinterLayout()
966 bool PspGraphics::GetGlyphBoundRect( sal_GlyphId aGlyphId, Rectangle& rRect ) in GetGlyphBoundRect() argument
968 const int nLevel = aGlyphId >> GF_FONTSHIFT; in GetGlyphBoundRect()
976 aGlyphId &= ~GF_FONTMASK; in GetGlyphBoundRect()
977 const GlyphMetric& rGM = pSF->GetGlyphMetric( aGlyphId ); in GetGlyphBoundRect()
982 bool PspGraphics::GetGlyphOutline( sal_GlyphId aGlyphId, in GetGlyphOutline() argument
985 const int nLevel = aGlyphId >> GF_FONTSHIFT; in GetGlyphOutline()
993 aGlyphId &= ~GF_FONTMASK; in GetGlyphOutline()
994 bool bOK = pSF->GetGlyphOutline( aGlyphId, rB2DPolyPoly ); in GetGlyphOutline()