Lines Matching refs:pathname
337 inline sal_Bool isURL( const sal_Char *pathname ) in isURL() argument
339 return ( 0 == strncmp( pathname, FILE_PREFIX, sizeof( FILE_PREFIX ) - 1 ) ); in isURL()
345 inline sal_Bool isURL( const ::rtl::OUString pathname ) in isURL() argument
347 return ( ( pathname.indexOf( aPreURL ) == 0 ) ? sal_True : sal_False ); in isURL()
6721 inline void insertPID( ::rtl::OUString & pathname ) in insertPID() argument
6724 if ( pathname.indexOf( aTempDirectoryURL ) && pathname.indexOf( aTempDirectorySys ) ) in insertPID()
6728 if ( !pathname.indexOf( aTempDirectoryURL ) ) in insertPID()
6732 ::rtl::OUString pathRight = pathname.copy( aTempDirectoryURL.getLength( ) ); in insertPID()
6733 pathname = pathLeft.copy( 0 ); in insertPID()
6734 ( ( pathname += aSlashURL ) += strPID ) += pathRight; in insertPID()
6740 ::rtl::OUString pathRight = pathname.copy( aTempDirectorySys.getLength( ) ); in insertPID()
6741 pathname = pathLeft.copy( 0 ); in insertPID()
6742 ( ( pathname += aSlashURL ) += strPID ) += pathRight; in insertPID()