Lines Matching refs:rFontSelData

1453 static ImplFontSelectData GetFcSubstitute(const ImplFontSelectData &rFontSelData, OUString& rMissin…  in GetFcSubstitute()  argument
1455 ImplFontSelectData aRet(rFontSelData); in GetFcSubstitute()
1457 …const rtl::OString aLangAttrib = MsLangId::convertLanguageToIsoByteString( rFontSelData.meLanguage… in GetFcSubstitute()
1460 if( rFontSelData.GetSlant() != ITALIC_DONTKNOW ) in GetFcSubstitute()
1462 switch( rFontSelData.GetSlant() ) in GetFcSubstitute()
1473 if( rFontSelData.GetWeight() != WEIGHT_DONTKNOW ) in GetFcSubstitute()
1475 switch( rFontSelData.GetWeight() ) in GetFcSubstitute()
1493 if( rFontSelData.GetWidthType() != WIDTH_DONTKNOW ) in GetFcSubstitute()
1495 switch( rFontSelData.GetWidthType() ) in GetFcSubstitute()
1512 if( rFontSelData.GetPitch() != PITCH_DONTKNOW ) in GetFcSubstitute()
1514 switch( rFontSelData.GetPitch() ) in GetFcSubstitute()
1524 …aRet.maSearchName = rMgr.Substitute( rFontSelData.maTargetName, rMissingCodes, aLangAttrib, eItali… in GetFcSubstitute()
1594 bool FcPreMatchSubstititution::FindFontSubstitute( ImplFontSelectData &rFontSelData ) const in FindFontSubstitute()
1597 if( rFontSelData.IsSymbolFont() ) in FindFontSubstitute()
1600 if( 0 == rFontSelData.maSearchName.CompareIgnoreCaseToAscii( "starsymbol", 10) in FindFontSubstitute()
1601 || 0 == rFontSelData.maSearchName.CompareIgnoreCaseToAscii( "opensymbol", 10) ) in FindFontSubstitute()
1605 const ImplFontSelectData aOut = GetFcSubstitute( rFontSelData, aDummy ); in FindFontSubstitute()
1613 const bool bHaveSubstitute = !uselessmatch( rFontSelData, aOut ); in FindFontSubstitute()
1616 const ByteString aOrigName( rFontSelData.maTargetName, RTL_TEXTENCODING_UTF8 ); in FindFontSubstitute()
1619 aOrigName.GetBuffer(), rFontSelData.meWeight, rFontSelData.meItalic, in FindFontSubstitute()
1620 rFontSelData.mePitch, rFontSelData.meWidthType ); in FindFontSubstitute()
1629 rFontSelData = aOut; in FindFontSubstitute()
1636 bool FcGlyphFallbackSubstititution::FindFontSubstitute( ImplFontSelectData& rFontSelData, in FindFontSubstitute() argument
1640 if( rFontSelData.IsSymbolFont() ) in FindFontSubstitute()
1643 if( 0 == rFontSelData.maSearchName.CompareIgnoreCaseToAscii( "starsymbol", 10) in FindFontSubstitute()
1644 || 0 == rFontSelData.maSearchName.CompareIgnoreCaseToAscii( "opensymbol", 10) ) in FindFontSubstitute()
1647 const ImplFontSelectData aOut = GetFcSubstitute( rFontSelData, rMissingCodes ); in FindFontSubstitute()
1655 const bool bHaveSubstitute = !uselessmatch( rFontSelData, aOut ); in FindFontSubstitute()
1658 const ByteString aOrigName( rFontSelData.maTargetName, RTL_TEXTENCODING_UTF8 ); in FindFontSubstitute()
1661 aOrigName.GetBuffer(), rFontSelData.meWeight, rFontSelData.meItalic, in FindFontSubstitute()
1662 rFontSelData.mePitch, rFontSelData.meWidthType ); in FindFontSubstitute()
1671 rFontSelData = aOut; in FindFontSubstitute()