Lines Matching refs:aObjIt
491 ::std::deque< AttachedObject_Impl >::iterator aObjIt = rList.begin(); in detachAll_Impl()
493 while( aObjIt != aObjEnd ) in detachAll_Impl()
495 pMgr->detach( nIdx, (*aObjIt).xTarget ); in detachAll_Impl()
496 aObjIt++; in detachAll_Impl()
508 ::std::deque< AttachedObject_Impl >::iterator aObjIt = rList.begin(); in attachAll_Impl()
510 while( aObjIt != aObjEnd ) in attachAll_Impl()
512 pMgr->attach( nIdx, (*aObjIt).xTarget, (*aObjIt).aHelper ); in attachAll_Impl()
513 aObjIt++; in attachAll_Impl()
546 ::std::deque< AttachedObject_Impl >::iterator aObjIt = (*aIt).aObjList.begin(); in registerScriptEvent()
548 while( aObjIt != aObjEnd ) in registerScriptEvent()
551 sal_Int32 nPos = (*aObjIt).aAttachedListenerSeq.getLength(); in registerScriptEvent()
552 (*aObjIt).aAttachedListenerSeq.realloc( nPos + 1 ); in registerScriptEvent()
553 Reference< XEventListener > * pArray = (*aObjIt).aAttachedListenerSeq.getArray(); in registerScriptEvent()
559 pArray[nPos] = xAttacher->attachSingleEventListener( (*aObjIt).xTarget, xAll, in registerScriptEvent()
560 (*aObjIt).aHelper, ScriptEvent.ListenerType, in registerScriptEvent()
567 aObjIt++; in registerScriptEvent()
824 ::std::deque< AttachedObject_Impl >::iterator aObjIt = aCurrentPosition->aObjList.begin(); in detach()
826 while( aObjIt != aObjEnd ) in detach()
828 if( (*aObjIt).xTarget == xObject ) in detach()
830 Reference< XEventListener > * pArray = (*aObjIt).aAttachedListenerSeq.getArray(); in detach()
842 xAttacher->removeListener( (*aObjIt).xTarget, (*aEvtIt).ListenerType, in detach()
861 xAttacher->removeListener( (*aObjIt).xTarget, pEL[i].ListenerType, in detach()
870 aCurrentPosition->aObjList.erase( aObjIt ); in detach()
873 aObjIt++; in detach()