Lines Matching refs:aResult
172 void parseFontFamilyName( FontAttributes& aResult );
182 FontAttributes& aResult, bool bItalic, bool bBold);
250 rtl::OString aResult(pBuffer); in lcl_unescapeLineFeeds() local
252 return aResult; in lcl_unescapeLineFeeds()
312 basegfx::B2DPolyPolygon aResult; in readPath() local
360 aResult.append( aSubPath ); in readPath()
367 basegfx::B2DRange aRange( aResult.getB2DRange() ); in readPath()
375 new basegfx::unotools::UnoPolyPolygon(aResult)); in readPath()
472 FontAttributes& aResult, bool bItalic, bool bBold) in parseFontCheckForString() argument
481 aResult.isItalic = bItalic; in parseFontCheckForString()
482 aResult.isBold = bBold; in parseFontCheckForString()
500 void Parser::parseFontFamilyName( FontAttributes& aResult ) in parseFontFamilyName() argument
502 rtl::OUStringBuffer aNewFamilyName( aResult.familyName.getLength() ); in parseFontFamilyName()
504 const sal_Unicode* pCopy = aResult.familyName.getStr(); in parseFontFamilyName()
505 sal_Int32 nLen = aResult.familyName.getLength(); in parseFontFamilyName()
518 if (parseFontCheckForString( pCopy, "Italic", nLen, aResult, true, false)) {} in parseFontFamilyName()
519 else if (parseFontCheckForString( pCopy, "-Bold", nLen, aResult, false, true)) {} in parseFontFamilyName()
520 else if (parseFontCheckForString( pCopy, "Bold", nLen, aResult, false, true)) {} in parseFontFamilyName()
521 else if (parseFontCheckForString( pCopy, "-Roman", nLen, aResult, false, false)) {} in parseFontFamilyName()
522 else if (parseFontCheckForString( pCopy, "-LightOblique", nLen, aResult, true, false)) {} in parseFontFamilyName()
523 else if (parseFontCheckForString( pCopy, "-BoldOblique", nLen, aResult, true, true)) {} in parseFontFamilyName()
524 else if (parseFontCheckForString( pCopy, "-Light", nLen, aResult, false, false)) {} in parseFontFamilyName()
525 else if (parseFontCheckForString( pCopy, "-Reg", nLen, aResult, false, false)) {} in parseFontFamilyName()
534 aResult.familyName = aNewFamilyName.makeStringAndClear(); in parseFontFamilyName()
570 FontAttributes aResult( rtl::OStringToOUString( aFontName, in readFont() local
579 parseFontFamilyName(aResult); in readFont()
603 aResult.familyName = aFD.Name; in readFont()
604 parseFontFamilyName(aResult); in readFont()
605 aResult.isBold = (aFD.Weight > 100.0); in readFont()
606 aResult.isItalic = (aFD.Slant == awt::FontSlant_OBLIQUE || in readFont()
608 aResult.isUnderline = false; in readFont()
609 aResult.size = 0; in readFont()
617 if( !aResult.familyName.getLength() ) in readFont()
620 aResult.familyName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Arial" ) ); in readFont()
621 aResult.isUnderline = false; in readFont()
625 m_aFontMap[nFontID] = aResult; in readFont()
627 aResult.size = nSize; in readFont()
628 m_pSink->setFont(aResult); in readFont()