Searched refs:nLastSlash (Results 1 – 11 of 11) sorted by relevance
/aoo4110/main/ucb/source/ucp/tdoc/ |
H A D | tdoc_uri.cxx | 92 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()
|
/aoo4110/main/ucb/source/ucp/package/ |
H A D | pkguri.cxx | 181 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 D | pkgcontent.cxx | 175 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()
|
/aoo4110/main/ucb/source/ucp/hierarchy/ |
H A D | hierarchyuri.cxx | 187 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()
|
/aoo4110/main/xmlhelp/source/cxxhelp/provider/ |
H A D | databases.cxx | 1611 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 …]
|
/aoo4110/main/ucb/source/ucp/file/ |
H A D | bc.cxx | 891 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 D | shell.cxx | 1193 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()
|
/aoo4110/main/ucb/source/core/ |
H A D | ucbcmds.cxx | 354 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()
|
/aoo4110/main/desktop/source/deployment/registry/help/ |
H A D | dp_help.cxx | 522 sal_Int32 nLastSlash = aLangURL.lastIndexOf( '/' ); in implProcessHelp() local 523 if( nLastSlash != -1 ) in implProcessHelp() 524 aLang = aLangURL.copy( nLastSlash + 1 ); in implProcessHelp()
|
/aoo4110/main/writerfilter/source/resourcemodel/ |
H A D | TagLogger.cxx | 368 size_t nLastSlash = sPrefix.find_last_of('/'); in dump() local 370 size_t nCutPos = nLastSlash; in dump()
|
/aoo4110/main/xmlhelp/source/treeview/ |
H A D | tvread.cxx | 1153 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 76 milliseconds