Lines Matching refs:aKey

318                 ByteString aKey( aConfig.GetKeyName( nKey ) );  in initialize()  local
319 if( aKey.CompareTo( "PPD_", 4 ) == COMPARE_EQUAL ) in initialize()
321 aValue = aConfig.ReadKey( aKey ); in initialize()
322 …const PPDKey* pKey = m_aGlobalDefaults.m_pParser->getKey( String( aKey.Copy( 4 ), RTL_TEXTENCODING… in initialize()
331 else if( aKey.Len() > 10 && aKey.CompareTo("SubstFont_", 10 ) == COMPARE_EQUAL ) in initialize()
333 aValue = aConfig.ReadKey( aKey ); in initialize()
334 …m_aGlobalDefaults.m_aFontSubstitutes[ OStringToOUString( aKey.Copy( 10 ), RTL_TEXTENCODING_ISO_885… in initialize()
523 ByteString aKey( aConfig.GetKeyName( nKey ) ); in initialize() local
524 if( aKey.CompareTo( "PPD_", 4 ) == COMPARE_EQUAL && aPrinter.m_aInfo.m_pParser ) in initialize()
526 aValue = aConfig.ReadKey( aKey ); in initialize()
527 …const PPDKey* pKey = aPrinter.m_aInfo.m_pParser->getKey( String( aKey.Copy( 4 ), RTL_TEXTENCODING_… in initialize()
536 else if( aKey.Len() > 10 && aKey.CompareTo("SubstFont_", 10 ) == COMPARE_EQUAL ) in initialize()
538 aValue = aConfig.ReadKey( aKey ); in initialize()
539 …aPrinter.m_aInfo.m_aFontSubstitutes[ OStringToOUString( aKey.Copy( 10 ), RTL_TEXTENCODING_ISO_8859… in initialize()
794 ByteString aKey( "PPD_" ); in writePrinterConfig() local
795 aKey += ByteString( pKey->getKey(), RTL_TEXTENCODING_ISO_8859_1 ); in writePrinterConfig()
799 pConfig->WriteKey( aKey, aValue ); in writePrinterConfig()
808 ByteString aKey( "SubstFont_" ); in writePrinterConfig() local
809aKey.Append( OUStringToOString( subst->first, RTL_TEXTENCODING_ISO_8859_1 ).getStr() ); in writePrinterConfig()
810 … pConfig->WriteKey( aKey, OUStringToOString( subst->second, RTL_TEXTENCODING_ISO_8859_1 ) ); in writePrinterConfig()