Lines Matching refs:rDFA

79 AtsFontData::AtsFontData( const ImplDevFontAttributes& rDFA, ATSUFontID nFontId )  in AtsFontData()  argument
80 : ImplMacFontData( rDFA, (sal_IntPtr)nFontId ) in AtsFontData()
334 static bool GetDevFontAttributes( ATSUFontID nFontID, ImplDevFontAttributes& rDFA ) in GetDevFontAttributes() argument
337 rDFA.mbOrientation = true; in GetDevFontAttributes()
338 rDFA.mbDevice = true; in GetDevFontAttributes()
339 rDFA.mnQuality = 0; in GetDevFontAttributes()
342 rDFA.meFamily = FAMILY_DONTKNOW; in GetDevFontAttributes()
343 rDFA.mePitch = PITCH_VARIABLE; in GetDevFontAttributes()
344 rDFA.meWidthType = WIDTH_NORMAL; in GetDevFontAttributes()
345 rDFA.meWeight = WEIGHT_NORMAL; in GetDevFontAttributes()
346 rDFA.meItalic = ITALIC_NONE; in GetDevFontAttributes()
347 rDFA.mbSymbolFlag = false; in GetDevFontAttributes()
357 rDFA.mbSubsettable = true; in GetDevFontAttributes()
358 rDFA.mbEmbeddable = false; in GetDevFontAttributes()
360 rDFA.meAntiAlias = ANTIALIAS_DONTKNOW; in GetDevFontAttributes()
361 rDFA.meEmbeddedBitmap = EMBEDDEDBITMAP_DONTKNOW; in GetDevFontAttributes()
415 rDFA.mbSymbolFlag = true; // (often seen for symbol fonts) in GetDevFontAttributes()
454 else if( rDFA.maName.Len() ) in GetDevFontAttributes()
458 if( rDFA.maMapNames.Len() ) in GetDevFontAttributes()
459 rDFA.maMapNames += ';'; in GetDevFontAttributes()
460 rDFA.maMapNames += (nBestNameValue < nNameValue) ? rDFA.maName : aUtf16Name; in GetDevFontAttributes()
467 rDFA.maName = aUtf16Name; in GetDevFontAttributes()
475 rDFA.maStyleName = aUtf16Name; in GetDevFontAttributes()
480 UpdateAttributesFromPSName( aUtf16Name, rDFA ); in GetDevFontAttributes()
488 bool bRet = (rDFA.maName.Len() > 0); in GetDevFontAttributes()