Lines Matching refs:it

58     std::hash_map< HashedStyle, sal_Int32, StyleHash >::iterator it =  in impl_getStyleId()  local
61 if( it != m_aStyleToId.end() ) in impl_getStyleId()
63 nRet = it->second; in impl_getStyleId()
96 std::hash_map< sal_Int32, HashedStyle >::const_iterator it = in getProperties() local
98 return it != m_aIdToStyle.end() ? &(it->second.Properties) : NULL; in getProperties()
104 std::hash_map< sal_Int32, HashedStyle >::iterator it = in setProperties() local
106 if( it != m_aIdToStyle.end() ) in setProperties()
108 if( it->second.RefCount == 1 ) in setProperties()
110 nRet = it->first; in setProperties()
112 m_aStyleToId.erase( it->second ); in setProperties()
114 it->second.Properties = rNewProps; in setProperties()
116 m_aStyleToId[ it->second ] = nRet; in setProperties()
121 it->second.RefCount--; in setProperties()
124 aSearchStyle.Name = it->second.Name; in setProperties()
126 aSearchStyle.Contents = it->second.Contents; in setProperties()
127 aSearchStyle.ContainedElement = it->second.ContainedElement; in setProperties()
128 aSearchStyle.SubStyles = it->second.SubStyles; in setProperties()
129 aSearchStyle.IsSubStyle = it->second.IsSubStyle; in setProperties()
195 std::hash_map< sal_Int32, HashedStyle >::const_iterator it = m_aIdToStyle.find( nStyleId ); in impl_emitStyle() local
196 if( it != m_aIdToStyle.end() ) in impl_emitStyle()
198 const HashedStyle& rStyle = it->second; in impl_emitStyle()
219 for( std::hash_map< sal_Int32, HashedStyle >::iterator it = m_aIdToStyle.begin(); in emit() local
220 it != m_aIdToStyle.end(); ++it ) in emit()
222 if( ! it->second.IsSubStyle ) in emit()
224 if( it->second.Name.equals( "style:master-page" ) ) in emit()
225 aMasterPageSection.push_back( it->first ); in emit()
226 else if( getStyleName( it->first ).equalsAscii( "standard" ) ) in emit()
227 aOfficeStyleSection.push_back( it->first ); in emit()
229 aAutomaticStyleSection.push_back( it->first ); in emit()