Lines Matching refs:m_aPropertySetVector
92 sal_Int32 nSize = m_aPropertySetVector.size(); in insertByIndex()
101 m_aPropertySetVector.push_back( aPropertySetElement ); in insertByIndex()
104 PropertySetVector::iterator aIter = m_aPropertySetVector.begin(); in insertByIndex()
106 m_aPropertySetVector.insert( aIter, aPropertySetElement ); in insertByIndex()
125 if ( (sal_Int32)m_aPropertySetVector.size() > Index ) in removeByIndex()
127 PropertySetVector::iterator aIter = m_aPropertySetVector.begin(); in removeByIndex()
129 m_aPropertySetVector.erase( aIter ); in removeByIndex()
139 if ( (sal_Int32)m_aPropertySetVector.size() > Index ) in replaceByIndex()
145 m_aPropertySetVector[ Index ] = aPropertySetElement; in replaceByIndex()
164 return m_aPropertySetVector.size(); in getCount()
172 if ( (sal_Int32)m_aPropertySetVector.size() > Index ) in getByIndex()
176 a <<= m_aPropertySetVector[ Index ]; in getByIndex()
189 return !( m_aPropertySetVector.empty() ); in hasElements()