Home
last modified time | relevance | path

Searched refs:nGlyphIndex (Results 1 – 5 of 5) sorted by relevance

/AOO41X/main/vcl/source/glyphs/
H A Dgraphite_layout.cxx183 int nGlyphIndex = (bRtl)? (nGlyphs - 1) : 0; in fill_from() local
199 for (gi = iGlyphs.first + nGlyphIndex; in fill_from()
200 nGlyphIndex >= 0 && nGlyphIndex < nGlyphs; in fill_from()
201 nGlyphIndex+= nDelta, gi = iGlyphs.first + nGlyphIndex) in fill_from()
212 if ((bRtl && nGlyphIndex < nLastGlyph) || in fill_from()
213 (!bRtl && nGlyphIndex > nLastGlyph)) in fill_from()
220 !in_range(nAttachedBase, nFirstGlyphInCluster, nGlyphIndex)) in fill_from()
223 nFirstGlyphInCluster != nGlyphIndex) in fill_from()
228 nNextChar, nFirstGlyphInCluster, nGlyphIndex, fScaling, in fill_from()
234 nFirstGlyphInCluster = nGlyphIndex; in fill_from()
[all …]
H A Dgcach_layout.cxx280 LEGlyphID nGlyphIndex = mrServerFont.GetRawGlyphIndex( ch ); in mapCharToGlyph() local
281 return nGlyphIndex; in mapCharToGlyph()
313 void IcuFontFromServerFont::getGlyphAdvance( LEGlyphID nGlyphIndex, in getGlyphAdvance() argument
316 if( (nGlyphIndex == ICU_MARKED_GLYPH) in getGlyphAdvance()
317 || (nGlyphIndex == ICU_DELETED_GLYPH) ) in getGlyphAdvance()
324 const GlyphMetric& rGM = mrServerFont.GetGlyphMetric( nGlyphIndex ); in getGlyphAdvance()
482 LEGlyphID nGlyphIndex = pIcuGlyphs[i]; in operator ()() local
484 if( (nGlyphIndex == ICU_MARKED_GLYPH) in operator ()()
485 || (nGlyphIndex == ICU_DELETED_GLYPH) ) in operator ()()
500 if( !nGlyphIndex ) in operator ()()
[all …]
H A Dgcach_ftyp.cxx1217 int nGlyphIndex = mpFontInfo->GetGlyphIndex( aChar ); in GetRawGlyphIndex() local
1218 if( nGlyphIndex < 0 ) in GetRawGlyphIndex()
1220 nGlyphIndex = FT_Get_Char_Index( maFaceFT, aChar ); in GetRawGlyphIndex()
1221 if( !nGlyphIndex) in GetRawGlyphIndex()
1225 nGlyphIndex = FT_Get_Char_Index( maFaceFT, aChar | 0xF000 ); in GetRawGlyphIndex()
1228 if (!nGlyphIndex) in GetRawGlyphIndex()
1229 nGlyphIndex = psp::PrintFontManager::get().FreeTypeCharIndex( maFaceFT, aChar ); in GetRawGlyphIndex()
1232 mpFontInfo->CacheGlyphIndex( aChar, nGlyphIndex ); in GetRawGlyphIndex()
1235 return sal_GlyphId( nGlyphIndex); in GetRawGlyphIndex()
1802 FT_UInt nGlyphIndex; in GetFontCodeRanges() local
[all …]
/AOO41X/main/vcl/source/fontsubset/
H A Dcff.cxx451 int getFDSelect( int nGlyphIndex) const;
452 int getGlyphSID( int nGlyphIndex) const;
453 const char* getGlyphName( int nGlyphIndex);
1784 int CffSubsetterContext::getFDSelect( int nGlyphIndex) const in getFDSelect()
1786 assert( nGlyphIndex >= 0); in getFDSelect()
1787 assert( nGlyphIndex < mnCharStrCount); in getFDSelect()
1795 pReadPtr += nGlyphIndex; in getFDSelect()
1811 if( nGlyphIndex < nNext) in getFDSelect()
1828 int CffSubsetterContext::getGlyphSID( int nGlyphIndex) const in getGlyphSID()
1830 if( nGlyphIndex == 0) in getGlyphSID()
[all …]
/AOO41X/main/vcl/source/gdi/
H A Dimpfont.cxx164 const int nGlyphIndex = GetGlyphIndex( cChar ); in HasChar() local
165 bHasChar = (nGlyphIndex != 0); // not the notdef-glyph in HasChar()
195 int nGlyphIndex = cChar - mpRangeCodes[ nRange ]; in GetGlyphIndex() local
199 nGlyphIndex += nStartIndex; in GetGlyphIndex()
202 nGlyphIndex = mpGlyphIds[ nGlyphIndex - nStartIndex]; in GetGlyphIndex()
205 return nGlyphIndex; in GetGlyphIndex()
443 const int nGlyphIndex = Getsal_uInt16( pGlyphIdPtr ) + nGlyphDelta; in ParseCMAP() local
444 aGlyphIdArray.push_back( static_cast<sal_uInt16>(nGlyphIndex) ); in ParseCMAP()