Lines Matching refs:maControls

84     ControlMap  maControls;  member in UnoControlHolderList
102 inline size_t size() const { return maControls.size(); } in size()
106 inline bool empty() const { return maControls.empty(); } in empty()
201 _out_rControls.realloc( maControls.size() ); in getControls()
203 for ( ControlMap::const_iterator loop = maControls.begin(); in getControls()
204 loop != maControls.end(); in getControls()
208 return maControls.size(); in getControls()
214 _out_rIdentifiers.realloc( maControls.size() ); in getIdentifiers()
216 for ( ControlMap::const_iterator loop = maControls.begin(); in getIdentifiers()
217 loop != maControls.end(); in getIdentifiers()
221 return maControls.size(); in getIdentifiers()
227 for ( ControlMap::const_iterator loop = maControls.begin(); in getControlForName()
228 loop != maControls.end(); in getControlForName()
239 for ( ControlMap::iterator loop = maControls.begin(); in getControlIdentifier()
240 loop != maControls.end(); in getControlIdentifier()
253 ControlMap::const_iterator pos = maControls.find( _nIdentifier ); in getControlForIdentifier()
254 if ( pos == maControls.end() ) in getControlForIdentifier()
263 ControlMap::iterator pos = maControls.find( _nId ); in removeControlById()
264 DBG_ASSERT( pos != maControls.end(), "UnoControlHolderList::removeControlById: invalid id!" ); in removeControlById()
265 if ( pos == maControls.end() ) in removeControlById()
268 maControls.erase( pos ); in removeControlById()
276 ControlMap::iterator pos = maControls.find( _nId ); in replaceControlById()
277 DBG_ASSERT( pos != maControls.end(), "UnoControlHolderList::replaceControlById: invalid id!" ); in replaceControlById()
278 if ( pos == maControls.end() ) in replaceControlById()
292 maControls[ nId ] = ControlInfo( new UnoControlHolder( sName, _rxControl ) ); in impl_addControl()
301 ControlMap::const_iterator existent = maControls.find( candidateId ); in impl_getFreeIdentifier_throw()
302 if ( existent == maControls.end() ) in impl_getFreeIdentifier_throw()
315 ControlMap::const_iterator loop = maControls.begin(); in impl_getFreeName_throw()
316 for ( ; loop != maControls.end(); ++loop ) in impl_getFreeName_throw()
321 if ( loop == maControls.end() ) in impl_getFreeName_throw()