Lines Matching refs:StylePool

38                          StylePool::SfxItemSet_Pointer_t,
47 void addStyleName( StylePool::SfxItemSet_Pointer_t pStyle ) in addStyleName()
48 { mMap[ StylePool::nameOf(pStyle) ] = pStyle; } in addStyleName()
49 void addCompletePool( StylePool& rPool );
50 StylePool::SfxItemSet_Pointer_t getByName( const rtl::OUString& rName ) { return mMap[rName]; } in getByName()
53 void SwStyleCache::addCompletePool( StylePool& rPool ) in addCompletePool()
56 StylePool::SfxItemSet_Pointer_t pStyle = pIter->getNext(); in addCompletePool()
59 rtl::OUString aName( StylePool::nameOf(pStyle) ); in addCompletePool()
68 StylePool aAutoCharPool;
69 StylePool aAutoParaPool;
84 virtual StylePool::SfxItemSet_Pointer_t getAutomaticStyle( const SfxItemSet& rSet,
86 virtual StylePool::SfxItemSet_Pointer_t getByName( const rtl::OUString& rName,
88 virtual void getAllStyles( std::vector<StylePool::SfxItemSet_Pointer_t> &rStyles,
90 virtual StylePool::SfxItemSet_Pointer_t cacheAutomaticStyle( const SfxItemSet& rSet,
114 StylePool::SfxItemSet_Pointer_t SwStyleManager::getAutomaticStyle( const SfxItemSet& rSet, in getAutomaticStyle()
117 StylePool& rAutoPool = eFamily == IStyleAccess::AUTO_STYLE_CHAR ? aAutoCharPool : aAutoParaPool; in getAutomaticStyle()
121 StylePool::SfxItemSet_Pointer_t SwStyleManager::cacheAutomaticStyle( const SfxItemSet& rSet, in cacheAutomaticStyle()
124 StylePool& rAutoPool = eFamily == IStyleAccess::AUTO_STYLE_CHAR ? aAutoCharPool : aAutoParaPool; in cacheAutomaticStyle()
125 StylePool::SfxItemSet_Pointer_t pStyle = rAutoPool.insertItemSet( rSet ); in cacheAutomaticStyle()
134 StylePool::SfxItemSet_Pointer_t SwStyleManager::getByName( const rtl::OUString& rName, in getByName()
137 StylePool& rAutoPool = eFamily == IStyleAccess::AUTO_STYLE_CHAR ? aAutoCharPool : aAutoParaPool; in getByName()
141 StylePool::SfxItemSet_Pointer_t pStyle = rpCache->getByName( rName ); in getByName()
153 void SwStyleManager::getAllStyles( std::vector<StylePool::SfxItemSet_Pointer_t> &rStyles, in getAllStyles()
156 StylePool& rAutoPool = eFamily == IStyleAccess::AUTO_STYLE_CHAR ? aAutoCharPool : aAutoParaPool; in getAllStyles()
161 StylePool::SfxItemSet_Pointer_t pStyle = pIter->getNext(); in getAllStyles()