Lines Matching refs:rName

134 SfxStyleSheetBase::SfxStyleSheetBase( const XubString& rName, SfxStyleSheetBasePool& r, SfxStyleFam…  in SfxStyleSheetBase()  argument
137 , aName( rName ) in SfxStyleSheetBase()
139 , aFollow( rName ) in SfxStyleSheetBase()
215 sal_Bool SfxStyleSheetBase::SetName( const XubString& rName ) in SetName() argument
217 if(rName.Len() == 0) in SetName()
219 if( aName != rName ) in SetName()
222 SfxStyleSheetBase *pOther = rPool.Find( rName, nFamily ) ; in SetName()
232 rPool.ChangeParent( aName, rName, sal_False ); in SetName()
234 aFollow = rName; in SetName()
235 aName = rName; in SetName()
267 sal_Bool SfxStyleSheetBase::SetParent( const XubString& rName ) in SetParent() argument
269 if ( rName == aName ) in SetParent()
272 if( aParent != rName ) in SetParent()
274 SfxStyleSheetBase* pIter = rPool.Find(rName, nFamily); in SetParent()
275 if( rName.Len() && !pIter ) in SetParent()
284 if(pIter->GetName() == aName && aName != rName) in SetParent()
288 aParent = rName; in SetParent()
301 sal_Bool SfxStyleSheetBase::SetFollow( const XubString& rName ) in SetFollow() argument
303 if( aFollow != rName ) in SetFollow()
305 if( !rPool.Find( rName, nFamily ) ) in SetFollow()
310 aFollow = rName; in SetFollow()
680 const XubString& rName, in Create() argument
685 return new SfxStyleSheetBase( rName, *this, eFam, mask ); in Create()
693 SfxStyleSheetBase& SfxStyleSheetBasePool::Make( const XubString& rName, SfxStyleFamily eFam, sal_uI… in Make() argument
698 rtl::Reference< SfxStyleSheetBase > xStyle( aIter.Find( rName ) ); in Make()
704 xStyle = Create( rName, eFam, mask ); in Make()
771 SfxStyleSheetBase* SfxStyleSheetBasePool::Find(const XubString& rName, in Find() argument
776 return aIter.Find(rName); in Find()
1251 SfxStyleSheet::SfxStyleSheet(const XubString &rName, in SfxStyleSheet() argument
1255 SfxStyleSheetBase(rName, const_cast< SfxStyleSheetBasePool& >( r_Pool ), eFam, mask) in SfxStyleSheet()
1274 sal_Bool SfxStyleSheet::SetParent( const XubString& rName ) in SetParent() argument
1276 if(aParent == rName) in SetParent()
1279 if(SfxStyleSheetBase::SetParent(rName)) { in SetParent()
1315 SfxStyleSheetBase* SfxStyleSheetPool::Create( const XubString& rName, in Create() argument
1318 return new SfxStyleSheet( rName, *this, eFam, mask ); in Create()