Lines Matching refs:sRelativeURL
156 … const ::rtl::OUString sRelativeURL( sURL.copy( ContentProvider::getRootURL().getLength() ) ); in Content() local
157 const sal_Int32 nSepPos = sRelativeURL.indexOf( '/' ); in Content()
158 if ( ( nSepPos == -1 ) || ( nSepPos == sRelativeURL.getLength() - 1 ) ) in Content()
359 ::rtl::OUString sRelativeURL( sURL.copy( sRootURL.getLength() ) ); in getParentURL()
363 …ENSURE_OR_BREAK( sRelativeURL.match( sSeparatedExtensionId ), "illegal URL structure - no extensio… in getParentURL()
364 sRelativeURL = sRelativeURL.copy( sSeparatedExtensionId.getLength() ); in getParentURL()
367 …ENSURE_OR_BREAK( sRelativeURL.getLength(), "illegal URL structure - ExtensionContent should have a… in getParentURL()
368 if ( sRelativeURL.getStr()[ sRelativeURL.getLength() - 1 ] == '/' ) in getParentURL()
369 sRelativeURL = sRelativeURL.copy( 0, sRelativeURL.getLength() - 1 ); in getParentURL()
372 const sal_Int32 nLastSep = sRelativeURL.lastIndexOf( '/' ); in getParentURL()
373 sRelativeURL = sRelativeURL.copy( 0, nLastSep != -1 ? nLastSep : 0 ); in getParentURL()
378 aComposer.append( sRelativeURL ); in getParentURL()