Home
last modified time | relevance | path

Searched refs:nLastSlash (Results 1 – 11 of 11) sorted by relevance

/trunk/main/ucb/source/ucp/tdoc/
H A Dtdoc_uri.cxx92 sal_Int32 nLastSlash = m_aUri.lastIndexOf( '/' ); in init() local
94 if ( nLastSlash == m_aUri.getLength() - 1 ) in init()
98 nLastSlash = m_aUri.lastIndexOf( '/', nLastSlash ); in init()
101 if ( nLastSlash != -1 ) // -1 is valid for the root folder in init()
103 m_aParentUri = m_aUri.copy( 0, nLastSlash + 1 ); in init()
106 m_aName = m_aUri.copy( nLastSlash + 1, in init()
107 m_aUri.getLength() - nLastSlash - 2 ); in init()
109 m_aName = m_aUri.copy( nLastSlash + 1 ); in init()
/trunk/main/ucb/source/ucp/package/
H A Dpkguri.cxx181 sal_Int32 nLastSlash = m_aPackage.lastIndexOf( '/' ); in init() local
182 if ( nLastSlash != -1 ) in init()
184 m_aPackage.copy( nLastSlash + 1 ) ); in init()
227 sal_Int32 nLastSlash = aPureUri.lastIndexOf( '/' ); in init() local
228 if ( nLastSlash != -1 ) in init()
230 m_aParentUri = aPureUri.copy( 0, nLastSlash ); in init()
232 aPureUri.copy( nLastSlash + 1 ) ); in init()
H A Dpkgcontent.cxx175 sal_Int32 nLastSlash = aURL.lastIndexOf( '/' ); in create() local
176 if ( ( nLastSlash + 1 ) == aURL.getLength() ) in create()
194 sal_Int32 nLastSlash = aURL.lastIndexOf( '/' ); in create() local
195 if ( ( nLastSlash + 1 ) == aURL.getLength() ) in create()
/trunk/main/ucb/source/ucp/hierarchy/
H A Dhierarchyuri.cxx187 sal_Int32 nLastSlash = m_aUri.lastIndexOf( '/' ); in init() local
188 if ( ( nLastSlash != -1 ) && in init()
189 ( nLastSlash != m_aUri.getLength() - 1 ) ) // root in init()
191 m_aParentUri = m_aUri.copy( 0, nLastSlash ); in init()
192 m_aName = m_aUri.copy( nLastSlash + 1 ); in init()
/trunk/main/xmlhelp/source/cxxhelp/provider/
H A Ddatabases.cxx1611 sal_Int32 nLastSlash = aEntry.lastIndexOf( '/' ); in implGetLanguageVectorFromPackage() local
1612 if( nLastSlash != -1 ) in implGetLanguageVectorFromPackage()
1614 rtl::OUString aPureEntry = aEntry.copy( nLastSlash + 1 ); in implGetLanguageVectorFromPackage()
1933 sal_Int32 nLastSlash = zipFile.lastIndexOf( '/' ); in implGetJarFromPackage() local
1934 if( nLastSlash != -1 ) in implGetJarFromPackage()
1935 *o_pExtensionPath = zipFile.copy( 0, nLastSlash ); in implGetJarFromPackage()
2067 sal_Int32 nLastSlash = aLangURL.lastIndexOf( '/' ); in implGetIndexFolderFromPackage() local
2068 if( nLastSlash != -1 ) in implGetIndexFolderFromPackage()
2069 aLang = aLangURL.copy( nLastSlash + 1 ); in implGetIndexFolderFromPackage()
2132 sal_Int32 nLastSlash = aIndexFolder.lastIndexOf( '/' ); in deleteTempIndexFolder() local
[all …]
/trunk/main/ucb/source/ucp/file/
H A Dbc.cxx891 sal_Int32 nLastSlash = m_aUncPath.lastIndexOf( '/' ); in setPropertyValues() local
893 if ( nLastSlash == m_aUncPath.getLength() - 1 ) in setPropertyValues()
896 nLastSlash in setPropertyValues()
897 = m_aUncPath.lastIndexOf( '/', nLastSlash ); in setPropertyValues()
900 OSL_ENSURE( nLastSlash != -1, in setPropertyValues()
905 m_aUncPath.copy( 0, nLastSlash + 1 ) ); in setPropertyValues()
H A Dshell.cxx1193 sal_Int32 nLastSlash = dstUnqPath.lastIndexOf( '/' ); in move() local
1194 … if( ( nLastSlash < nLastDot ) // dot is part of last(!) path segment in move()
1195 … && ( nLastSlash != ( nLastDot - 1 ) ) ) // file name does not start with a dot in move()
1423 sal_Int32 nLastSlash = dstUnqPath.lastIndexOf( '/' ); in copy() local
1424 if ( ( nLastSlash < nLastDot ) // dot is part of last(!) path segment in copy()
1425 && ( nLastSlash != ( nLastDot - 1 ) ) ) // file name does not start with a dot in copy()
/trunk/main/ucb/source/core/
H A Ducbcmds.cxx354 sal_Int32 nLastSlash = rSourceURL.lastIndexOf( '/' ); in createDesiredName() local
356 if ( nLastSlash == rSourceURL.getLength() - 1 ) in createDesiredName()
358 nLastSlash = rSourceURL.lastIndexOf( '/', nLastSlash ); in createDesiredName()
362 if ( nLastSlash != -1 ) in createDesiredName()
366 nLastSlash + 1, in createDesiredName()
367 rSourceURL.getLength() - nLastSlash - 2 ); in createDesiredName()
369 aName = rSourceURL.copy( nLastSlash + 1 ); in createDesiredName()
/trunk/main/desktop/source/deployment/registry/help/
H A Ddp_help.cxx522 sal_Int32 nLastSlash = aLangURL.lastIndexOf( '/' ); in implProcessHelp() local
523 if( nLastSlash != -1 ) in implProcessHelp()
524 aLang = aLangURL.copy( nLastSlash + 1 ); in implProcessHelp()
/trunk/main/writerfilter/source/resourcemodel/
H A DTagLogger.cxx439 size_t nLastSlash = sPrefix.find_last_of('/'); in dump() local
441 size_t nCutPos = nLastSlash; in dump()
/trunk/main/xmlhelp/source/treeview/
H A Dtvread.cxx1153 sal_Int32 nLastSlash = aEntry.lastIndexOf( '/' ); in implGetLanguageVectorFromPackage() local
1154 if( nLastSlash != -1 ) in implGetLanguageVectorFromPackage()
1156 rtl::OUString aPureEntry = aEntry.copy( nLastSlash + 1 ); in implGetLanguageVectorFromPackage()

Completed in 123 milliseconds