Lines Matching refs:rtl

59 static ::rtl::OUString sExtensionSubDir = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/user/uno_…
60 static ::rtl::OUString sSubDirName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "cache" ) );
61 static ::rtl::OUString sConfigDir = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/user/registry/d…
62 static ::rtl::OUString sOrgDir = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/user/registry/data…
63 static ::rtl::OUString sExcludeDir1 = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/user/registry…
64 static ::rtl::OUString sExcludeDir2 = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/user/registry…
65 static ::rtl::OUString sDescriptionXmlFile = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/descri…
66 static ::rtl::OUString sExtensionRootSubDirName = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "/u…
68 static ::rtl::OUString sConfigurationDataType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("appli…
69 static ::rtl::OUString sConfigurationSchemaType = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("app…
75 ::rtl::OUString OO3ExtensionMigration_getImplementationName() in OO3ExtensionMigration_getImplementationName()
77 static ::rtl::OUString* pImplName = 0; in OO3ExtensionMigration_getImplementationName()
83 …static ::rtl::OUString aImplName( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.comp.desktop.migratio… in OO3ExtensionMigration_getImplementationName()
92 Sequence< ::rtl::OUString > OO3ExtensionMigration_getSupportedServiceNames() in OO3ExtensionMigration_getSupportedServiceNames()
94 static Sequence< ::rtl::OUString >* pNames = 0; in OO3ExtensionMigration_getSupportedServiceNames()
100 static Sequence< ::rtl::OUString > aNames(1); in OO3ExtensionMigration_getSupportedServiceNames()
101 …aNames.getArray()[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.migration.Exten… in OO3ExtensionMigration_getSupportedServiceNames()
139 void OO3ExtensionMigration::scanUserExtensions( const ::rtl::OUString& sSourceDir, TStringVector& a… in scanUserExtensions()
154 ::rtl::OUString sExtensionFolderURL = fs.getFileURL(); in scanUserExtensions()
179 OO3ExtensionMigration::ScanResult OO3ExtensionMigration::scanExtensionFolder( const ::rtl::OUString… in scanExtensionFolder()
196 ::rtl::OUString aDirEntryURL; in scanExtensionFolder()
218 bool OO3ExtensionMigration::scanDescriptionXml( const ::rtl::OUString& sDescriptionXmlURL ) in scanDescriptionXml()
224 … ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.xml.dom.DocumentBuilder")), in scanDescriptionXml()
232 ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("com.sun.star.ucb.SimpleFileAccess")), in scanDescriptionXml()
236 ::rtl::OUString aExtIdentifier; in scanDescriptionXml()
251 … xRoot->getTagName().equals(::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("description"))) ) in scanDescriptionXml()
255 … ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "com.sun.star.xml.xpath.XPathAPI")), in scanDescriptionXml()
260 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("desc")), in scanDescriptionXml()
263 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("xlink")), in scanDescriptionXml()
264 … ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("http://www.w3.org/1999/xlink"))); in scanDescriptionXml()
272 … ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("desc:identifier/@value")) )); in scanDescriptionXml()
330 bool OO3ExtensionMigration::migrateExtension( const ::rtl::OUString& sSourceDir ) in migrateExtension()
354 ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("user")), xAbortChannel, xCmdEnv ); in migrateExtension()
384 ::rtl::OUString OO3ExtensionMigration::getImplementationName() throw (RuntimeException) in getImplementationName()
391 sal_Bool OO3ExtensionMigration::supportsService( const ::rtl::OUString& rServiceName ) throw (Runti… in supportsService()
393 Sequence< ::rtl::OUString > aNames( getSupportedServiceNames() ); in supportsService()
394 const ::rtl::OUString* pNames = aNames.getConstArray(); in supportsService()
395 const ::rtl::OUString* pEnd = pNames + aNames.getLength(); in supportsService()
404 Sequence< ::rtl::OUString > OO3ExtensionMigration::getSupportedServiceNames() throw (RuntimeExcepti… in getSupportedServiceNames()
432 Sequence< ::rtl::OUString > aBlackList; in initialize()
436 ::comphelper::sequenceToArray< ::rtl::OUString >( &m_aBlackList[0], aBlackList ); in initialize()
444 TStringVectorPtr getContent( const ::rtl::OUString& rBaseURL ) in getContent()
473 ::rtl::OUString sSourceDir( m_sSourceDir ); in execute()