Lines Matching refs:sal_UCS4

35 	const sal_UCS4* pRangeCodes, int nRangeCount,  in CmapResult()
55 const sal_UCS4* pRangePtr = mpRangeCodes; in ImplFontCharMap()
58 sal_UCS4 cFirst = pRangePtr[0]; in ImplFontCharMap()
59 sal_UCS4 cLast = pRangePtr[1]; in ImplFontCharMap()
65 static const sal_UCS4 aDefaultUnicodeRanges[] = {0x0020,0xD800, 0xE000,0xFFF0};
66 static const sal_UCS4 aDefaultSymbolRanges[] = {0x0020,0x0100, 0xF020,0xF100};
95 const sal_UCS4* pRangeCodes = aDefaultUnicodeRanges; in GetDefaultMap()
135 int ImplFontCharMap::ImplFindRangeIndex( sal_UCS4 cChar ) const in ImplFindRangeIndex()
154 bool ImplFontCharMap::HasChar( sal_UCS4 cChar ) const in HasChar()
173 int ImplFontCharMap::GetGlyphIndex( sal_UCS4 cChar ) const in GetGlyphIndex()
212 int ImplFontCharMap::CountCharsInRange( sal_UCS4 cMin, sal_UCS4 cMax ) const in CountCharsInRange()
239 sal_UCS4 ImplFontCharMap::GetFirstChar() const in GetFirstChar()
246 sal_UCS4 ImplFontCharMap::GetLastChar() const in GetLastChar()
253 sal_UCS4 ImplFontCharMap::GetNextChar( sal_UCS4 cChar ) const in GetNextChar()
268 sal_UCS4 ImplFontCharMap::GetPrevChar( sal_UCS4 cChar ) const in GetPrevChar()
283 int ImplFontCharMap::GetIndexFromChar( sal_UCS4 cChar ) const in GetIndexFromChar()
287 const sal_UCS4* pRange = &mpRangeCodes[0]; in GetIndexFromChar()
290 sal_UCS4 cFirst = *(pRange++); in GetIndexFromChar()
291 sal_UCS4 cLast = *(pRange++); in GetIndexFromChar()
305 sal_UCS4 ImplFontCharMap::GetCharFromIndex( int nCharIndex ) const in GetCharFromIndex()
308 const sal_UCS4* pRange = &mpRangeCodes[0]; in GetCharFromIndex()
311 sal_UCS4 cFirst = *(pRange++); in GetCharFromIndex()
312 sal_UCS4 cLast = *(pRange++); in GetCharFromIndex()
403 sal_UCS4* pCodePairs = NULL; in ParseCMAP()
416 pCodePairs = new sal_UCS4[ nRangeCount * 2 ]; in ParseCMAP()
422 sal_UCS4* pCP = pCodePairs; in ParseCMAP()
425 const sal_UCS4 cMinChar = Getsal_uInt16( pBeginBase + 2*i ); in ParseCMAP()
426 const sal_UCS4 cMaxChar = Getsal_uInt16( pLimitBase + 2*i ); in ParseCMAP()
442 for( sal_UCS4 c = cMinChar; c <= cMaxChar; ++c, pGlyphIdPtr+=2 ) { in ParseCMAP()
454 pCodePairs = new sal_UCS4[ nRangeCount * 2 ]; in ParseCMAP()
457 sal_UCS4* pCP = pCodePairs; in ParseCMAP()
460 sal_UCS4 cMinChar = GetUInt( pGroup + 0 ); in ParseCMAP()
461 sal_UCS4 cMaxChar = GetUInt( pGroup + 4 ); in ParseCMAP()
489 pCodePairs = new sal_UCS4[4]; in ParseCMAP()
516 typedef std::set<sal_UCS4> Ucs4Set; in ParseCMAP()
523 sal_UCS4* pCP = pCodePairs; in ParseCMAP()
526 sal_UCS4 cMin = *(pCP++); in ParseCMAP()
527 sal_UCS4 cEnd = *(pCP++); in ParseCMAP()
557 typedef std::vector<sal_UCS4> Ucs4Vector; in ParseCMAP()
585 pCodePairs = new sal_UCS4[ nRangeCount * 2 ]; in ParseCMAP()
634 int FontCharMap::CountCharsInRange( sal_UCS4 cMin, sal_UCS4 cMax ) const in CountCharsInRange()
665 bool FontCharMap::HasChar( sal_UCS4 cChar ) const in HasChar()
672 sal_UCS4 FontCharMap::GetFirstChar() const in GetFirstChar()
679 sal_UCS4 FontCharMap::GetLastChar() const in GetLastChar()
686 sal_UCS4 FontCharMap::GetNextChar( sal_UCS4 cChar ) const in GetNextChar()
693 sal_UCS4 FontCharMap::GetPrevChar( sal_UCS4 cChar ) const in GetPrevChar()
700 int FontCharMap::GetIndexFromChar( sal_UCS4 cChar ) const in GetIndexFromChar()
707 sal_UCS4 FontCharMap::GetCharFromIndex( int nIndex ) const in GetCharFromIndex()