Lines Matching refs:rReturn

47 …lFileHelper::ConvertSystemPathToURL( const String& rName, const String& rBaseURL, String& rReturn )  in ConvertSystemPathToURL()  argument
49 rReturn = ::rtl::OUString(); in ConvertSystemPathToURL()
56 rReturn = aRet; in ConvertSystemPathToURL()
64 rReturn = ::ucbhelper::getFileURLFromSystemPath( xManager, rBaseURL, rName ); in ConvertSystemPathToURL()
72 return ( rReturn.Len() != 0 ); in ConvertSystemPathToURL()
75 sal_Bool LocalFileHelper::ConvertURLToSystemPath( const String& rName, String& rReturn ) in ConvertURLToSystemPath() argument
77 rReturn = ::rtl::OUString(); in ConvertURLToSystemPath()
83 rReturn = aRet; in ConvertURLToSystemPath()
91 rReturn = ::ucbhelper::getSystemPathFromFileURL( xManager, rName ); in ConvertURLToSystemPath()
98 return ( rReturn.Len() != 0 ); in ConvertURLToSystemPath()
101 sal_Bool LocalFileHelper::ConvertPhysicalNameToURL( const String& rName, String& rReturn ) in ConvertPhysicalNameToURL() argument
103 rReturn = ::rtl::OUString(); in ConvertPhysicalNameToURL()
109 rReturn = aRet; in ConvertPhysicalNameToURL()
119 rReturn = ::ucbhelper::getFileURLFromSystemPath( xManager, aBase, rName ); in ConvertPhysicalNameToURL()
126 return ( rReturn.Len() != 0 ); in ConvertPhysicalNameToURL()
129 sal_Bool LocalFileHelper::ConvertURLToPhysicalName( const String& rName, String& rReturn ) in ConvertURLToPhysicalName() argument
131 rReturn = ::rtl::OUString(); in ConvertURLToPhysicalName()
137 rReturn = aRet; in ConvertURLToPhysicalName()
148 rReturn = ::ucbhelper::getSystemPathFromFileURL( xManager, rName ); in ConvertURLToPhysicalName()
155 return ( rReturn.Len() != 0 ); in ConvertURLToPhysicalName()