Lines Matching refs:rFontName

346 void OutputDevice::AddFontSubstitute( const XubString& rFontName,  in AddFontSubstitute()  argument
353 rpSubst->AddFontSubstitute( rFontName, rReplaceFontName, nFlags ); in AddFontSubstitute()
359 void ImplDirectFontSubstitution::AddFontSubstitute( const String& rFontName, in AddFontSubstitute() argument
362 maFontSubstList.push_back( ImplFontSubstEntry( rFontName, rSubstFontName, nFlags ) ); in AddFontSubstitute()
367 ImplFontSubstEntry::ImplFontSubstEntry( const String& rFontName, in ImplFontSubstEntry() argument
369 : maName( rFontName ) in ImplFontSubstEntry()
373 maSearchName = rFontName; in ImplFontSubstEntry()
381 void OutputDevice::ImplAddDevFontSubstitute( const XubString& rFontName, in ImplAddDevFontSubstitute() argument
386 mpOutDevData->maDevFontSubst.AddFontSubstitute( rFontName, rReplaceFontName, nFlags ); in ImplAddDevFontSubstitute()
422 XubString& rFontName, in GetFontSubstitute() argument
428 pSubst->GetFontSubstitute( n, rFontName, rReplaceFontName, rFlags ); in GetFontSubstitute()
434 String& rFontName, String& rSubstFontName, sal_uInt16& rFlags ) const in GetFontSubstitute() argument
442 rFontName = pEntry->maName; in GetFontSubstitute()
471 static void ImplFontSubstitute( String& rFontName, in ImplFontSubstitute() argument
475 String aTempName = rFontName; in ImplFontSubstitute()
477 DBG_ASSERT( aTempName == rFontName, "ImplFontSubstitute() called without a searchname" ); in ImplFontSubstitute()
484 if( pSubst && pSubst->FindFontSubstitute( aSubstFontName, rFontName, FONT_SUBSTITUTE_ALWAYS ) ) in ImplFontSubstitute()
486 rFontName = aSubstFontName; in ImplFontSubstitute()
494 if( pDevSpecific->FindFontSubstitute( aSubstFontName, rFontName, nFlags ) ) in ImplFontSubstitute()
496 rFontName = aSubstFontName; in ImplFontSubstitute()
702 static unsigned ImplIsCJKFont( const String& rFontName ) in ImplIsCJKFont() argument
706 const sal_Unicode* pStr = rFontName.GetBuffer(); in ImplIsCJKFont()
843 const String& rFontName = rFSD.maTargetName; in IsBetterMatch() local
844 if( (rFontName == maName) || rFontName.EqualsIgnoreCaseAscii( maName ) ) in IsBetterMatch()
1008 …ImplFontEntry::AddFallbackForUnicode( sal_UCS4 cChar, FontWeight eWeight, const String& rFontName ) in AddFallbackForUnicode() argument
1012 (*mpUnicodeFallbackList)[ GFBCacheKey(cChar,eWeight) ] = rFontName; in AddFallbackForUnicode()
1032 …lFontEntry::IgnoreFallbackForUnicode( sal_UCS4 cChar, FontWeight eWeight, const String& rFontName ) in IgnoreFallbackForUnicode() argument
1039 if( (*it).second == rFontName ) in IgnoreFallbackForUnicode()
1604 ImplDevFontListData* ImplDevFontList::FindFontFamily( const String& rFontName ) const in FindFontFamily()
1607 String aName = rFontName; in FindFontFamily()
2160 ImplGetDevSizeList* ImplDevFontList::GetDevSizeList( const String& rFontName ) const in GetDevSizeList()
2162 ImplGetDevSizeList* pGetDevSizeList = new ImplGetDevSizeList( rFontName ); in GetDevSizeList()
2164 ImplDevFontListData* pFontFamily = FindFontFamily( rFontName ); in GetDevSizeList()
7209 sal_Bool OutputDevice::AddTempDevFont( const String& rFileURL, const String& rFontName ) in AddTempDevFont() argument
7219 bool bRC = mpGraphics->AddTempDevFont( mpFontList, rFileURL, rFontName ); in AddTempDevFont()
7224 mpAlphaVDev->AddTempDevFont( rFileURL, rFontName ); in AddTempDevFont()
7281 sal_Bool OutputDevice::IsFontAvailable( const String& rFontName ) const in IsFontAvailable()
7286 ImplDevFontListData* pFound = mpFontList->FindFontFamily( rFontName ); in IsFontAvailable()