Lines Matching refs:aGlyphSet

141     char_list_t::iterator aGlyphSet;  in LookupCharID()  local
145 for (aGlyphSet = maCharList.begin(), nGlyphSetID = 1; in LookupCharID()
146 aGlyphSet != maCharList.end(); in LookupCharID()
147 ++aGlyphSet, nGlyphSetID++) in LookupCharID()
150 char_map_t::const_iterator aGlyph = (*aGlyphSet).find (nChar); in LookupCharID()
151 if (aGlyph != (*aGlyphSet).end()) in LookupCharID()
172 glyph_list_t::iterator aGlyphSet; in LookupGlyphID() local
176 for (aGlyphSet = maGlyphList.begin(), nGlyphSetID = 1; in LookupGlyphID()
177 aGlyphSet != maGlyphList.end(); in LookupGlyphID()
178 ++aGlyphSet, nGlyphSetID++) in LookupGlyphID()
181 glyph_map_t::const_iterator aGlyph = (*aGlyphSet).find (nGlyph); in LookupGlyphID()
182 if (aGlyph != (*aGlyphSet).end()) in LookupGlyphID()
276 char_map_t& aGlyphSet = maCharList.front(); in AddCharID() local
277 AddNotdef (aGlyphSet); in AddCharID()
279 aGlyphSet [nChar] = nMappedChar; in AddCharID()
286 char_map_t& aGlyphSet = maCharList.back(); in AddCharID() local
287 AddNotdef (aGlyphSet); in AddCharID()
289 int nSize = aGlyphSet.size(); in AddCharID()
291 aGlyphSet [nChar] = nSize; in AddCharID()
293 *nOutGlyphID = aGlyphSet [nChar]; in AddCharID()
335 glyph_map_t& aGlyphSet = maGlyphList.front(); in AddGlyphID() local
336 AddNotdef (aGlyphSet); in AddGlyphID()
338 aGlyphSet [nGlyph] = nMappedChar; in AddGlyphID()
345 glyph_map_t& aGlyphSet = maGlyphList.back(); in AddGlyphID() local
346 AddNotdef (aGlyphSet); in AddGlyphID()
348 int nSize = aGlyphSet.size(); in AddGlyphID()
350 aGlyphSet [nGlyph] = nSize; in AddGlyphID()
352 *nOutGlyphID = aGlyphSet [nGlyph]; in AddGlyphID()
504 std::set< sal_Int32 > aGlyphSet; in DrawGlyphs() local
510 aGlyphSet.insert (pGlyphSetID[nChar]); in DrawGlyphs()
519 for (aSet = aGlyphSet.begin(); aSet != aGlyphSet.end(); ++aSet) in DrawGlyphs()
637 std::set< sal_Int32 > aGlyphSet; in ImplDrawText() local
643 aGlyphSet.insert (pGlyphSetID[nChar]); in ImplDrawText()
652 for (aSet = aGlyphSet.begin(); aSet != aGlyphSet.end(); ++aSet) in ImplDrawText()
710 char_list_t::iterator aGlyphSet; in PSUploadEncoding() local
711 for (aGlyphSet = maCharList.begin(); aGlyphSet != maCharList.end(); aGlyphSet++) in PSUploadEncoding()
720 if ((*aGlyphSet).size() == 0) // empty set, doesn't need reencoding in PSUploadEncoding()
743 for (aUnsortedGlyph = (*aGlyphSet).begin(); in PSUploadEncoding()
744 aUnsortedGlyph != (*aGlyphSet).end(); in PSUploadEncoding()
892 glyph_list_t::iterator aGlyphSet; in PSUploadFont() local
893 for (aGlyphSet = maGlyphList.begin(), nGlyphSetID = 1; in PSUploadFont()
894 aGlyphSet != maGlyphList.end(); in PSUploadFont()
895 ++aGlyphSet, nGlyphSetID++) in PSUploadFont()
897 if ((*aGlyphSet).size() == 0) in PSUploadFont()
903 for (aGlyph = (*aGlyphSet).begin(); aGlyph != (*aGlyphSet).end(); aGlyph++) in PSUploadFont()
913 CreatePSUploadableFont( pTTFont, pTmpFile, aGlyphSetName.getStr(), (*aGlyphSet).size(), in PSUploadFont()