Lines Matching refs:ePath

205         sal_Bool            IsPathReadonly(SvtPathOptions::Pathes ePath)const;
217 SvtPathOptions::Pathes ePath; // The enum value used by SvtPathOptions member
278 const String& SvtPathOptions_Impl::GetPath( SvtPathOptions::Pathes ePath ) in GetPath() argument
282 if ( ePath >= SvtPathOptions::PATH_COUNT ) in GetPath()
287 sal_Int32 nHandle = m_aMapEnumToPropHandle[ (sal_Int32)ePath ]; in GetPath()
292 if( ePath == SvtPathOptions::PATH_ADDIN || in GetPath()
293 ePath == SvtPathOptions::PATH_FILTER || in GetPath()
294 ePath == SvtPathOptions::PATH_HELP || in GetPath()
295 ePath == SvtPathOptions::PATH_MODULE || in GetPath()
296 ePath == SvtPathOptions::PATH_PLUGIN || in GetPath()
297 ePath == SvtPathOptions::PATH_STORAGE in GetPath()
305 m_aPathArray[ ePath ] = aPathValue; in GetPath()
306 return m_aPathArray[ ePath ]; in GetPath()
309 sal_Bool SvtPathOptions_Impl::IsPathReadonly(SvtPathOptions::Pathes ePath)const in IsPathReadonly()
313 if ( ePath < SvtPathOptions::PATH_COUNT ) in IsPathReadonly()
319 const char* pA = aPropNames[ePath].pPropName; in IsPathReadonly()
329 void SvtPathOptions_Impl::SetPath( SvtPathOptions::Pathes ePath, const String& rNewPath ) in SetPath() argument
333 if ( ePath < SvtPathOptions::PATH_COUNT ) in SetPath()
339 switch ( ePath ) in SetPath()
362 m_xPathSettings->setFastPropertyValue( m_aMapEnumToPropHandle[ (sal_Int32)ePath], a ); in SetPath()
514 sal_Int32 nEnum = aPropNames[i].ePath; in SvtPathOptions_Impl()
923 sal_Bool SvtPathOptions::SearchFile( String& rIniFile, Pathes ePath ) in SearchFile() argument
935 switch ( ePath ) in SearchFile()
962 switch ( ePath ) in SearchFile()
1044 sal_Bool SvtPathOptions::IsPathReadonly(Pathes ePath)const in IsPathReadonly()
1046 return pImp->IsPathReadonly(ePath); in IsPathReadonly()
1049 const String& SvtPathOptions::GetPath(Pathes ePath)const in GetPath()
1051 return pImp->GetPath(ePath); in GetPath()
1054 void SvtPathOptions::SetPath( SvtPathOptions::Pathes ePath, const String& rNewPath ) in SetPath() argument
1056 pImp->SetPath(ePath, rNewPath); in SetPath()