Home
last modified time | relevance | path

Searched refs:aIter (Results 201 – 225 of 827) sorted by path

12345678910>>...34

/trunk/main/forms/source/component/
H A DGrid.cxx413 ::cppu::OInterfaceIteratorHelper aIter(m_aResetListeners); in reset()
416 while (aIter.hasMoreElements() && bContinue) in reset()
417 bContinue =((XResetListener*)aIter.next())->approveReset(aEvt); in reset()
H A Dclickableimage.cxx183 ::cppu::OInterfaceIteratorHelper aIter( m_aApproveActionListeners ); in approveAction()
184 while( !bCancelled && aIter.hasMoreElements() ) in approveAction()
187 if( !static_cast< XApproveActionListener* >( aIter.next() )->approveAction( aEvent ) ) in approveAction()
H A Derrorbroadcaster.cxx88 ::cppu::OInterfaceIteratorHelper aIter( m_aErrorListeners ); in onError()
89 while ( aIter.hasMoreElements() ) in onError()
90 static_cast< XSQLErrorListener* >( aIter.next() )->errorOccured( _rError ); in onError()
/trunk/main/forms/source/helper/
H A Dresettable.cxx73 ::cppu::OInterfaceIteratorHelper aIter( m_aResetListeners ); in approveReset()
77 while ( aIter.hasMoreElements() && bContinue ) in approveReset()
78 bContinue = static_cast< XResetListener* >( aIter.next() )->approveReset( aResetEvent ); in approveReset()
/trunk/main/forms/source/richtext/
H A Dattributedispatcher.cxx127 ::cppu::OInterfaceIteratorHelper aIter( getStatusListeners() ); in onAttributeStateChanged()
128 while ( aIter.hasMoreElements() ) in onAttributeStateChanged()
129 doNotify( static_cast< XStatusListener* >( aIter.next() ), aEvent ); in onAttributeStateChanged()
H A Dfeaturedispatcher.cxx123 ::cppu::OInterfaceIteratorHelper aIter( getStatusListeners() ); in invalidateFeatureState_Broadcast()
124 while ( aIter.hasMoreElements() ) in invalidateFeatureState_Broadcast()
125 doNotify( static_cast< XStatusListener* >( aIter.next() ), aEvent ); in invalidateFeatureState_Broadcast()
/trunk/main/forms/source/runtime/
H A Dformoperations.cxx546 ::comphelper::IndexAccessIterator aIter( m_xLoadableForm ); in execute()
547 Reference< XInterface > xElement( aIter.Next() ); in execute()
553 xElement = aIter.Next(); in execute()
/trunk/main/forms/source/xforms/
H A DNameContainer.hxx126 typename map_t::const_iterator aIter = findItem( rName ); in getByName() local
127 if( aIter == maItems.end() ) in getByName()
130 return com::sun::star::uno::makeAny( aIter->second ); in getByName()
137 typename map_t::const_iterator aIter = maItems.begin(); in getElementNames() local
139 while( aIter != maItems.end() ) in getElementNames()
141 *pStrings = aIter->first; in getElementNames()
142 ++aIter; in getElementNames()
H A Dbinding.cxx577 aIter != aNodes.end(); in _getMIPEvaluationContexts()
578 aIter++, nCount++ ) in _getMIPEvaluationContexts()
631 aIter != maEventNodes.end(); in bind()
632 aIter ++ ) in bind()
637 aIter != aNodes.end(); in bind()
638 aIter++ ) in bind()
658 aIter != aMIPContexts.end(); in bind()
659 aIter++ ) in bind()
869 aIter != maEventNodes.end(); in clear()
870 aIter ++ ) in clear()
[all …]
H A Dcollection.hxx275 Listeners_t::iterator aIter = in removeContainerListener() local
277 if( aIter != maListeners.end() ) in removeContainerListener()
278 maListeners.erase( aIter ); in removeContainerListener()
293 aIter != maListeners.end(); in _elementInserted()
294 aIter++ ) in _elementInserted()
296 (*aIter)->elementInserted( aEvent ); in _elementInserted()
308 aIter != maListeners.end(); in _elementRemoved()
309 aIter++ ) in _elementRemoved()
311 (*aIter)->elementRemoved( aEvent ); in _elementRemoved()
324 aIter != maListeners.end(); in _elementReplaced()
[all …]
H A Dconvert.cxx543 Map_t::iterator aIter = maMap.find( rAny.getValueType() ); in toXSD() local
544 return aIter != maMap.end() ? aIter->second.first( rAny ) : OUString(); in toXSD()
550 Map_t::iterator aIter = maMap.find( rType ); in toAny() local
551 return aIter != maMap.end() ? aIter->second.second( rValue ) : Any_t(); in toAny()
H A Dmodel.cxx308 for( MIPs_t::iterator aIter = maMIPs.begin(); in removeMIPs() local
309 aIter != maMIPs.end(); ) in removeMIPs()
311 if( aIter->second.first == pTag ) in removeMIPs()
313 MIPs_t::iterator next( aIter ); ++next; in removeMIPs()
314 maMIPs.erase( aIter ); in removeMIPs()
315 aIter = next; in removeMIPs()
318 ++aIter; in removeMIPs()
335 MIPs_t::const_iterator aIter = maMIPs.lower_bound( xCurrent ); in queryMIP() local
336 for( ; aIter != aEnd; aIter++ ) in queryMIP()
337 aMIP.join( aIter->second.second ); in queryMIP()
H A Dmodel_ui.cxx950 for( std::vector<EvaluationContext>::iterator aIter = aContext.begin(); in getResultForExpression() local
951 aIter != aContext.end(); in getResultForExpression()
952 aIter ++ ) in getResultForExpression()
954 aExpression.evaluate( *aIter ); in getResultForExpression()
H A Dnamedcollection.hxx62 for( typename std::vector<T>::const_iterator aIter = maItems.begin(); in getNames() local
63 aIter != maItems.end(); in getNames()
64 aIter++ ) in getNames()
67 xNamed( *aIter, com::sun::star::uno::UNO_QUERY ); in getNames()
83 for( typename std::vector<T>::const_iterator aIter = maItems.begin(); in findItem() local
84 aIter != maItems.end(); in findItem()
85 aIter++ ) in findItem()
88 xNamed( *aIter, com::sun::star::uno::UNO_QUERY ); in findItem()
90 return aIter; in findItem()
/trunk/main/formula/source/ui/dlg/
H A Dformula.cxx1265 ::std::vector< ::rtl::OUString >::iterator aIter = m_aArguments.begin(); in EditFuncParas()
1267 for(sal_uInt16 i=0;aIter != aEnd;i++,++aIter) in EditFuncParas()
1269 sal_Int32 nLength=(*aIter).getLength(); in EditFuncParas()
1270 pParaWin->SetArgument(i,(*aIter)); in EditFuncParas()
H A Dfuncpage.cxx162 ::std::vector< TFunctionDesc >::iterator aIter = aLRUList.begin(); in UpdateFunctionList()
165 for ( ; aIter != aEnd; ++aIter ) in UpdateFunctionList()
167 const IFunctionDescription* pDesc = *aIter; in UpdateFunctionList()
/trunk/main/fpicker/source/unx/gnome/
H A DSalGtkFilePicker.cxx715 for (FilterList::iterator aIter = m_pFilterList->begin(); aIter != aEnd; ++aIter) in updateCurrentFilterFromName() local
717 if (aFilterName == shrinkFilterName( aIter->getTitle())) in updateCurrentFilterFromName()
719 m_aCurrentFilter = aIter->getTitle(); in updateCurrentFilterFromName()
2010 for (std::set<OUString>::const_iterator aIter = aAllFormats.begin(); aIter != aEnd; ++aIter) in SetFilters() local
2014 sAllFilter += *aIter; in SetFilters()
/trunk/main/framework/source/classes/
H A Ddroptargetlistener.cxx200 DataFlavorExVector::iterator aIter( m_pFormats->begin() ), aEnd( m_pFormats->end() ); in implts_IsDropFormatSupported() local
203 while ( aIter != aEnd ) in implts_IsDropFormatSupported()
205 if ( nFormat == (*aIter++).mnSotId ) in implts_IsDropFormatSupported()
208 aIter = aEnd; in implts_IsDropFormatSupported()
/trunk/main/framework/source/fwe/helper/
H A Dpropertysetcontainer.cxx104 PropertySetVector::iterator aIter = m_aPropertySetVector.begin(); in insertByIndex() local
105 aIter += Index; in insertByIndex()
106 m_aPropertySetVector.insert( aIter, aPropertySetElement ); in insertByIndex()
127 PropertySetVector::iterator aIter = m_aPropertySetVector.begin(); in removeByIndex() local
128 aIter += Index; in removeByIndex()
129 m_aPropertySetVector.erase( aIter ); in removeByIndex()
/trunk/main/framework/source/fwi/uielement/
H A Ditemcontainer.cxx218 std::vector< Sequence< PropertyValue > >::iterator aIter = m_aItemVector.begin(); in insertByIndex() local
219 aIter += Index; in insertByIndex()
220 m_aItemVector.insert( aIter, aSeq ); in insertByIndex()
236 std::vector< Sequence< PropertyValue > >::iterator aIter = m_aItemVector.begin(); in removeByIndex() local
237 aIter += Index; in removeByIndex()
238 m_aItemVector.erase( aIter ); in removeByIndex()
H A Drootitemcontainer.cxx285 std::vector< Sequence< PropertyValue > >::iterator aIter = m_aItemVector.begin(); in insertByIndex() local
286 aIter += Index; in insertByIndex()
287 m_aItemVector.insert( aIter, aSeq ); in insertByIndex()
303 std::vector< Sequence< PropertyValue > >::iterator aIter = m_aItemVector.begin(); in removeByIndex() local
304 aIter += Index; in removeByIndex()
305 m_aItemVector.erase( aIter ); in removeByIndex()
/trunk/main/framework/source/uielement/
H A Dtogglebuttontoolbarcontroller.cxx251 std::vector< ::rtl::OUString >::iterator aIter = m_aDropdownMenuList.begin(); in executeControlCommand() local
252 aIter += nPos; in executeControlCommand()
253 m_aDropdownMenuList.insert( aIter, aText ); in executeControlCommand()
266 … std::vector< ::rtl::OUString >::iterator aIter = m_aDropdownMenuList.begin(); in executeControlCommand() local
267 aIter += nPos; in executeControlCommand()
268 m_aDropdownMenuList.erase( aIter ); in executeControlCommand()
289 … std::vector< ::rtl::OUString >::iterator aIter = m_aDropdownMenuList.begin(); in executeControlCommand() local
290 aIter += j; in executeControlCommand()
291 m_aDropdownMenuList.erase( aIter ); in executeControlCommand()
/trunk/main/i18npool/source/localedata/
H A DLocaleNode.cxx818 ValueSet::const_iterator aIter( aFormatIndexSet.begin()); in generateCode() local
822 sal_Int16 nHere = ::std::min( ((aIter != aFormatIndexSet.end() ? *aIter : in generateCode()
825 if (aIter != aFormatIndexSet.end()) ++aIter; in generateCode()
H A Dlocaledata.cxx368 std::vector<LocaleDataLookupTableItem*>::iterator aIter(maLookupTable.begin()); in ~lcl_LookupTableHelper() local
370 for ( ; aIter != aEnd; ++aIter ) { in ~lcl_LookupTableHelper()
371 pItem = *aIter; in ~lcl_LookupTableHelper()
/trunk/main/l10ntools/java/receditor/java/transex3/controller/
H A DEditorController.java156 Iterator aIter = sdfstrings.iterator(); in initView() local
158 while( aIter.hasNext() ){ in initView()
159 SdfString aSdfString = (SdfString) aIter.next(); in initView()
208 Iterator aIter = sdfstrings.iterator(); in initView()
210 while( aIter.hasNext() ) in initView()
212 SdfString aSdfString = (SdfString )aIter.next(); in initView()
322 Iterator aIter=recfiles.iterator(); in readStrings() local
326 while( aIter.hasNext() ){ in readStrings()
327 aFile = (File) aIter.next(); in readStrings()

Completed in 135 milliseconds

12345678910>>...34