Lines Matching refs:rPath
364 void psp::normPath( OString& rPath ) in normPath() argument
368 ByteString aPath( rPath ); in normPath()
382 rPath = buf; in normPath()
386 rPath = aPath; in normPath()
390 void psp::splitPath( OString& rPath, OString& rDir, OString& rBase ) in splitPath() argument
392 normPath( rPath ); in splitPath()
393 sal_Int32 nIndex = rPath.lastIndexOf( '/' ); in splitPath()
395 rDir = rPath.copy( 0, nIndex ); in splitPath()
397 rDir = rPath.copy( 0, 1 ); in splitPath()
398 if( rPath.getLength() > nIndex+1 ) in splitPath()
399 rBase = rPath.copy( nIndex+1 ); in splitPath()