Lines Matching refs:_pInterfaces

76  , _pInterfaces(0)  in SfxSlotPool()
93 delete _pInterfaces; in ~SfxSlotPool()
112 if ( _pInterfaces == 0 ) in RegisterInterface()
113 _pInterfaces = new SfxInterfaceArr_Impl; in RegisterInterface()
114 _pInterfaces->Append(&rInterface); in RegisterInterface()
194 DBG_ASSERT( _pInterfaces, "releasing SfxInterface, but there are none" ); in ReleaseInterface()
196 _pInterfaces->Remove(&rInterface); in ReleaseInterface()
206 DBG_ASSERT( _pInterfaces != 0, "no Interfaces registered" ); in GetSlot()
209 for ( sal_uInt16 nInterf = 0; nInterf < _pInterfaces->Count(); ++nInterf ) in GetSlot()
211 const SfxSlot *pDef = _pInterfaces->GetObject(nInterf)->GetSlot(nId); in GetSlot()
227 DBG_ASSERT( _pInterfaces != 0, "no Interfaces registered" ); in SeekGroup()
282 DBG_ASSERT( _pInterfaces != 0, "no Interfaces registered" ); in SeekSlot()
285 sal_uInt16 nFirstInterface = _pParentPool ? _pParentPool->_pInterfaces->Count() : 0; in SeekSlot()
301 sal_uInt16 nCount = _pInterfaces->Count() + nFirstInterface; in SeekSlot()
306 SfxInterface* pInterface = (*_pInterfaces)[_nCurInterface-nFirstInterface]; in SeekSlot()
327 DBG_ASSERT( _pInterfaces != 0, "no Interfaces registered" ); in NextSlot()
330 sal_uInt16 nFirstInterface = _pParentPool ? _pParentPool->_pInterfaces->Count() : 0; in NextSlot()
349 if ( nInterface >= _pInterfaces->Count() ) in NextSlot()
353 SfxInterface* pInterface = (*_pInterfaces)[nInterface]; in NextSlot()
374 if ( !_pInterfaces || !_pInterfaces->Count() ) in FirstInterface()
376 return _pParentPool ? _pParentPool->FirstInterface() : (*_pInterfaces)[0]; in FirstInterface()
385 sal_uInt16 nFirstInterface = _pParentPool ? _pParentPool->_pInterfaces->Count() : 0; in NextInterface()
387 return (*_pParentPool->_pInterfaces)[_nCurInterface]; in NextInterface()
389 return nInterface < _pInterfaces->Count() ? (*_pInterfaces)[nInterface] : 0; in NextInterface()
395 for ( sal_uInt16 nInterface=0; nInterface<_pInterfaces->Count(); nInterface++ ) in GetUnoSlot()
397 pSlot = (*_pInterfaces)[nInterface]->GetSlot( rName ); in GetUnoSlot()