Lines Matching refs:pCopy

181     int 		 parseFontCheckForString( const sal_Unicode* pCopy, const char* str, sal_Int32& nLen, 
183 int parseFontRemoveSuffix( const sal_Unicode* pCopy, const char* s, sal_Int32& nLen);
471 int Parser::parseFontCheckForString( const sal_Unicode* pCopy, const char* s, sal_Int32& nLen, in parseFontCheckForString() argument
478 if (tolower(pCopy[i]) != s[i] in parseFontCheckForString()
479 && toupper(pCopy[i]) != s[i]) in parseFontCheckForString()
484 pCopy += l; in parseFontCheckForString()
488 int Parser::parseFontRemoveSuffix( const sal_Unicode* pCopy, const char* s, sal_Int32& nLen) in parseFontRemoveSuffix() argument
494 if ( pCopy[nLen - l + i] != s[i] ) in parseFontRemoveSuffix()
504 const sal_Unicode* pCopy = aResult.familyName.getStr(); in parseFontFamilyName() local
507 if( nLen > 8 && pCopy[6] == sal_Unicode('+') ) in parseFontFamilyName()
509 pCopy += 7; in parseFontFamilyName()
515 if (parseFontRemoveSuffix( pCopy, "PSMT", nLen)) {} in parseFontFamilyName()
516 else if (parseFontRemoveSuffix( pCopy, "MT", nLen)) {} 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()
528 if( *pCopy != '-' ) in parseFontFamilyName()
529 aNewFamilyName.append( *pCopy ); in parseFontFamilyName()
530 pCopy++; in parseFontFamilyName()