Lines Matching refs:rPath

358 void PathSettings::impl_mergeOldUserPaths(      PathSettings::PathInfo& rPath,  in impl_mergeOldUserPaths()  argument
369 if (rPath.bIsSinglePath) in impl_mergeOldUserPaths()
372 if (! rPath.sWritePath.equals(sOld)) in impl_mergeOldUserPaths()
373 rPath.sWritePath = sOld; in impl_mergeOldUserPaths()
378 ( rPath.lInternalPaths.findConst(sOld) == rPath.lInternalPaths.end()) && in impl_mergeOldUserPaths()
379 ( rPath.lUserPaths.findConst(sOld) == rPath.lUserPaths.end() ) && in impl_mergeOldUserPaths()
380 (! rPath.sWritePath.equals(sOld) ) in impl_mergeOldUserPaths()
382 rPath.lUserPaths.push_back(sOld); in impl_mergeOldUserPaths()
656 ::rtl::OUString PathSettings::impl_convertPath2OldStyle(const PathSettings::PathInfo& rPath) const in impl_convertPath2OldStyle()
660 lTemp.reserve(rPath.lInternalPaths.size() + rPath.lUserPaths.size() + 1); in impl_convertPath2OldStyle()
662 for ( pIt = rPath.lInternalPaths.begin(); in impl_convertPath2OldStyle()
663 pIt != rPath.lInternalPaths.end() ; in impl_convertPath2OldStyle()
668 for ( pIt = rPath.lUserPaths.begin(); in impl_convertPath2OldStyle()
669 pIt != rPath.lUserPaths.end() ; in impl_convertPath2OldStyle()
675 if (rPath.sWritePath.getLength() > 0) in impl_convertPath2OldStyle()
676 lTemp.push_back(rPath.sWritePath); in impl_convertPath2OldStyle()
709 void PathSettings::impl_purgeKnownPaths(const PathSettings::PathInfo& rPath, in impl_purgeKnownPaths() argument
713 for ( pIt = rPath.lInternalPaths.begin(); in impl_purgeKnownPaths()
714 pIt != rPath.lInternalPaths.end() ; in impl_purgeKnownPaths()
722 for ( pIt = rPath.lUserPaths.begin(); in impl_purgeKnownPaths()
723 pIt != rPath.lUserPaths.end() ; in impl_purgeKnownPaths()
732 OUStringList::iterator pItem = lList.find(rPath.sWritePath); in impl_purgeKnownPaths()
752 const PathSettings::PathInfo& rPath = pIt->second; in impl_rebuildPropertyDescriptor() local
756 pProp->Name = rPath.sPathName; in impl_rebuildPropertyDescriptor()
760 if (rPath.bIsReadonly) in impl_rebuildPropertyDescriptor()
765 pProp->Name = rPath.sPathName+POSTFIX_INTERNAL_PATHES; in impl_rebuildPropertyDescriptor()
773 pProp->Name = rPath.sPathName+POSTFIX_USER_PATHES; in impl_rebuildPropertyDescriptor()
777 if (rPath.bIsReadonly) in impl_rebuildPropertyDescriptor()
782 pProp->Name = rPath.sPathName+POSTFIX_WRITE_PATH; in impl_rebuildPropertyDescriptor()
786 if (rPath.bIsReadonly) in impl_rebuildPropertyDescriptor()
1014 PathSettings::PathHash::iterator rPath = m_lPaths.find(sProp); in impl_getPathAccess() local
1016 if (rPath != m_lPaths.end()) in impl_getPathAccess()
1017 return &(rPath->second); in impl_getPathAccess()
1034 PathSettings::PathHash::const_iterator rPath = m_lPaths.find(sProp); in impl_getPathAccessConst() local
1036 if (rPath != m_lPaths.end()) in impl_getPathAccessConst()
1037 return &(rPath->second); in impl_getPathAccessConst()