Lines Matching refs:aIt

242     OInterfaceIteratorHelper aIt( mpManager->aScriptListeners );  in firing()  local
243 while( aIt.hasMoreElements() ) in firing()
244 ((XScriptListener *)aIt.next())->firing( aScriptEvent ); in firing()
309 OInterfaceIteratorHelper aIt( mpManager->aScriptListeners ); in approveFiring() local
310 while( aIt.hasMoreElements() ) in approveFiring()
312 aRet = ((XScriptListener *)aIt.next())->approveFiring( aScriptEvent ); in approveFiring()
473 ::std::deque<AttacherIndex_Impl>::iterator aIt = aIndex.begin(); in implCheckIndex()
474 for ( sal_Int32 i = 0; (i < _nIndex) && (aIt != aIndex.end()); ++i, ++aIt ) in implCheckIndex()
477 if( aIt == aIndex.end() ) in implCheckIndex()
480 return aIt; in implCheckIndex()
529 ::std::deque<AttacherIndex_Impl>::iterator aIt = implCheckIndex( nIndex ); in registerScriptEvent()
531 ::std::deque< AttachedObject_Impl > aList = (*aIt).aObjList; in registerScriptEvent()
539 (*aIt).aEventList.push_back( aEvt ); in registerScriptEvent()
541 (*aIt).aEventList.realloc( (*aIt).aEventList.getLength() +1 ); in registerScriptEvent()
542 (*aIt).aEventList.getArray()[(*aIt).aEventList.getLength() -1] = aEvt; in registerScriptEvent()
546 ::std::deque< AttachedObject_Impl >::iterator aObjIt = (*aIt).aObjList.begin(); in registerScriptEvent()
547 ::std::deque< AttachedObject_Impl >::iterator aObjEnd = (*aIt).aObjList.end(); in registerScriptEvent()
582 ::std::deque<AttacherIndex_Impl>::iterator aIt = implCheckIndex( nIndex ); in registerScriptEvents()
584 ::std::deque< AttachedObject_Impl > aList = (*aIt).aObjList; in registerScriptEvents()
607 ::std::deque<AttacherIndex_Impl>::iterator aIt = implCheckIndex( nIndex ); in revokeScriptEvent()
609 ::std::deque< AttachedObject_Impl > aList = (*aIt).aObjList; in revokeScriptEvent()
619 ::std::deque< ScriptEventDescriptor >::iterator aEvtIt = (*aIt).aEventList.begin(); in revokeScriptEvent()
620 ::std::deque< ScriptEventDescriptor >::iterator aEvtEnd = (*aIt).aEventList.end(); in revokeScriptEvent()
627 (*aIt).aEventList.erase( aEvtIt ); in revokeScriptEvent()
634 Sequence< ScriptEventDescriptor >& rEventList = (*aIt).aEventList; in revokeScriptEvent()
664 ::std::deque<AttacherIndex_Impl>::iterator aIt = implCheckIndex( nIndex ); in revokeScriptEvents()
666 ::std::deque< AttachedObject_Impl > aList = (*aIt).aObjList; in revokeScriptEvents()
669 (*aIt).aEventList = ::std::deque< ScriptEventDescriptor >(); in revokeScriptEvents()
671 (*aIt).aEventList.realloc( 0 ); in revokeScriptEvents()
700 ::std::deque<AttacherIndex_Impl>::iterator aIt = implCheckIndex( nIndex ); in removeEntry()
702 ::std::deque< AttachedObject_Impl > aList = (*aIt).aObjList; in removeEntry()
704 aIndex.erase( aIt ); in removeEntry()
712 ::std::deque<AttacherIndex_Impl>::iterator aIt = implCheckIndex( nIndex ); in getScriptEvents()
715 Sequence< ScriptEventDescriptor > aSeq( (*aIt).aEventList.size() ); in getScriptEvents()
718 ::std::deque< ScriptEventDescriptor >::iterator aEvtIt = (*aIt).aEventList.begin(); in getScriptEvents()
719 ::std::deque< ScriptEventDescriptor >::iterator aEvtEnd = (*aIt).aEventList.end(); in getScriptEvents()
728 return (*aIt).aEventList; in getScriptEvents()
918 ::std::deque<AttacherIndex_Impl>::iterator aIt = aIndex.begin(); in write()
920 while( aIt != aEnd ) in write()
924 OutStream->writeLong( (*aIt).aEventList.size() ); in write()
925 ::std::deque< ScriptEventDescriptor >::iterator aEvtIt = (*aIt).aEventList.begin(); in write()
926 ::std::deque< ScriptEventDescriptor >::iterator aEvtEnd = (*aIt).aEventList.end(); in write()
939 sal_Int32 nLen = (*aIt).aEventList.getLength(); in write()
942 ScriptEventDescriptor * pEL = (*aIt).aEventList.getArray(); in write()
953 aIt++; in write()