Lines Matching refs:rPath

360 void PathSettings::impl_mergeOldUserPaths(      PathSettings::PathInfo& rPath,  in impl_mergeOldUserPaths()  argument
371 if (rPath.bIsSinglePath) in impl_mergeOldUserPaths()
374 if (! rPath.sWritePath.equals(sOld)) in impl_mergeOldUserPaths()
375 rPath.sWritePath = sOld; in impl_mergeOldUserPaths()
380 ( rPath.lInternalPaths.findConst(sOld) == rPath.lInternalPaths.end()) && in impl_mergeOldUserPaths()
381 ( rPath.lUserPaths.findConst(sOld) == rPath.lUserPaths.end() ) && in impl_mergeOldUserPaths()
382 (! rPath.sWritePath.equals(sOld) ) in impl_mergeOldUserPaths()
384 rPath.lUserPaths.push_back(sOld); in impl_mergeOldUserPaths()
658 ::rtl::OUString PathSettings::impl_convertPath2OldStyle(const PathSettings::PathInfo& rPath) const in impl_convertPath2OldStyle()
662 lTemp.reserve(rPath.lInternalPaths.size() + rPath.lUserPaths.size() + 1); in impl_convertPath2OldStyle()
664 for ( pIt = rPath.lInternalPaths.begin(); in impl_convertPath2OldStyle()
665 pIt != rPath.lInternalPaths.end() ; in impl_convertPath2OldStyle()
670 for ( pIt = rPath.lUserPaths.begin(); in impl_convertPath2OldStyle()
671 pIt != rPath.lUserPaths.end() ; in impl_convertPath2OldStyle()
677 if (rPath.sWritePath.getLength() > 0) in impl_convertPath2OldStyle()
678 lTemp.push_back(rPath.sWritePath); in impl_convertPath2OldStyle()
711 void PathSettings::impl_purgeKnownPaths(const PathSettings::PathInfo& rPath, in impl_purgeKnownPaths() argument
715 for ( pIt = rPath.lInternalPaths.begin(); in impl_purgeKnownPaths()
716 pIt != rPath.lInternalPaths.end() ; in impl_purgeKnownPaths()
724 for ( pIt = rPath.lUserPaths.begin(); in impl_purgeKnownPaths()
725 pIt != rPath.lUserPaths.end() ; in impl_purgeKnownPaths()
734 OUStringList::iterator pItem = lList.find(rPath.sWritePath); in impl_purgeKnownPaths()
754 const PathSettings::PathInfo& rPath = pIt->second; in impl_rebuildPropertyDescriptor() local
758 pProp->Name = rPath.sPathName; in impl_rebuildPropertyDescriptor()
762 if (rPath.bIsReadonly) in impl_rebuildPropertyDescriptor()
767 pProp->Name = rPath.sPathName+POSTFIX_INTERNAL_PATHES; in impl_rebuildPropertyDescriptor()
775 pProp->Name = rPath.sPathName+POSTFIX_USER_PATHES; in impl_rebuildPropertyDescriptor()
779 if (rPath.bIsReadonly) in impl_rebuildPropertyDescriptor()
784 pProp->Name = rPath.sPathName+POSTFIX_WRITE_PATH; in impl_rebuildPropertyDescriptor()
788 if (rPath.bIsReadonly) in impl_rebuildPropertyDescriptor()
1016 PathSettings::PathHash::iterator rPath = m_lPaths.find(sProp); in impl_getPathAccess() local
1018 if (rPath != m_lPaths.end()) in impl_getPathAccess()
1019 return &(rPath->second); in impl_getPathAccess()
1036 PathSettings::PathHash::const_iterator rPath = m_lPaths.find(sProp); in impl_getPathAccessConst() local
1038 if (rPath != m_lPaths.end()) in impl_getPathAccessConst()
1039 return &(rPath->second); in impl_getPathAccessConst()