Home
last modified time | relevance | path

Searched refs:aIterator (Results 1 – 25 of 34) sorted by relevance

12

/aoo41x/main/dbaccess/source/core/api/
H A DRowSetCacheIterator.cxx48 return m_aIter->second.aIterator; in operator ORowSetMatrix::iterator()
65 m_aIter->second.aIterator = _rIter; in operator =()
71 return *m_aIter->second.aIterator; in operator *()
80 m_aIter->second.aIterator = m_pCache->m_aMatrixIter; in operator *()
82 return *m_aIter->second.aIterator; in operator *()
87 return m_aIter->second.aIterator; in operator ->()
98 return m_aIter->second.aIterator; in operator ->()
103 return m_aIter->second.aIterator <= _rRH; in operator <=()
108 return m_aIter->second.aIterator < _rRH; in operator <()
113 return m_aIter->second.aIterator != _rRH; in operator !=()
[all …]
H A DRowSetCache.cxx443 aCacheIter->second.aIterator = m_pMatrix->begin() + *aIter++; in setFetchSize()
445 aCacheIter->second.aIterator = m_pMatrix->end(); in setFetchSize()
892 aCacheIter->second.aIterator = m_pMatrix->end(); in moveWindow()
898 aOldPos = aCacheIter->second.aIterator; in moveWindow()
901 aCacheIter->second.aIterator += nOffSet; in moveWindow()
906 OSL_ENSURE(aCacheIter->second.aIterator >= m_pMatrix->begin() in moveWindow()
1319 aCacheIter->second.aIterator = m_pMatrix->end(); in cancelRowModification()
1425 aHelper.aIterator = m_pMatrix->end(); in createIterator()
1460 aCacheIter->second.aIterator = m_pMatrix->end(); in rotateCacheIterator()
1465 aCacheIter->second.aIterator -= _nDist; in rotateCacheIterator()
[all …]
/aoo41x/main/vcl/source/window/
H A Ddndlcon.cxx157 OInterfaceIteratorHelper aIterator( *pContainer ); in fireDropEvent() local
167 while (aIterator.hasMoreElements()) in fireDropEvent()
230 OInterfaceIteratorHelper aIterator( *pContainer ); in fireDragExitEvent() local
235 while (aIterator.hasMoreElements()) in fireDragExitEvent()
276 OInterfaceIteratorHelper aIterator( *pContainer ); in fireDragOverEvent() local
286 while (aIterator.hasMoreElements()) in fireDragOverEvent()
344 OInterfaceIteratorHelper aIterator( *pContainer ); in fireDragEnterEvent() local
354 while (aIterator.hasMoreElements()) in fireDragEnterEvent()
411 OInterfaceIteratorHelper aIterator( *pContainer ); in fireDropActionChangedEvent() local
421 while (aIterator.hasMoreElements()) in fireDropActionChangedEvent()
[all …]
/aoo41x/main/chart2/source/controller/main/
H A DSelectionHelper.cxx522 SdrObjListIter aIterator(*pSubList, IM_FLAT); in getMarkHandlesObject() local
523 while (aIterator.IsMore()) in getMarkHandlesObject()
525 SdrObject* pMarkHandles = SelectionHelper::getMarkHandlesObject( aIterator.Next() ); in getMarkHandlesObject()
547 SdrObjListIter aIterator(*pSubList, IM_FLAT); in getObjectToMark() local
548 while (aIterator.IsMore()) in getObjectToMark()
578 SdrObjListIter aIterator(*pSubList, IM_DEEPWITHGROUPS); in getSceneToRotate() local
579 while( aIterator.IsMore() && !pRotateable ) in getSceneToRotate()
581 SdrObject* pSubObj = aIterator.Next(); in getSceneToRotate()
668 SdrObjListIter aIterator(*pSubList, IM_FLAT); in getMarkHandles() local
670 while (aIterator.IsMore()) in getMarkHandles()
[all …]
/aoo41x/main/sfx2/source/view/
H A Duserinputinterception.cxx196 ::cppu::OInterfaceIteratorHelper aIterator( m_pData->m_aKeyHandlers ); in handleNotifyEvent()
197 while ( aIterator.hasMoreElements() ) in handleNotifyEvent()
199 … Reference< XKeyHandler > xHandler( static_cast< XKeyHandler* >( aIterator.next() ) ); in handleNotifyEvent()
213 aIterator.remove(); in handleNotifyEvent()
234 ::cppu::OInterfaceIteratorHelper aIterator( m_pData->m_aMouseClickHandlers ); in handleNotifyEvent()
235 while ( aIterator.hasMoreElements() ) in handleNotifyEvent()
237 …Reference< XMouseClickHandler > xHandler( static_cast< XMouseClickHandler* >( aIterator.next() ) ); in handleNotifyEvent()
251 aIterator.remove(); in handleNotifyEvent()
/aoo41x/main/package/source/zippackage/
H A DZipPackageFolderEnumeration.cxx34 , aIterator (rContents.begin()) in ZipPackageFolderEnumeration()
45 return (aIterator != rContents.end() ); in hasMoreElements()
51 if (aIterator == rContents.end() ) in nextElement()
53 aAny <<= (*aIterator).second->xTunnel; in nextElement()
54 aIterator++; in nextElement()
H A DZipPackageFolder.cxx269 for ( ContentHash::const_iterator aIterator = maContents.begin(), aEnd = maContents.end(); in getElementNames() local
270 aIterator != aEnd; in getElementNames()
271 ++i, ++aIterator) in getElementNames()
272 aSequence[i] = (*aIterator).first; in getElementNames()
/aoo41x/main/package/source/zipapi/
H A DZipEnumeration.cxx32 , aIterator(rEntryHash.begin()) in ZipEnumeration()
40 return (aIterator != rEntryHash.end()); in hasMoreElements()
45 if (aIterator != rEntryHash.end()) in nextElement()
46 return &((*aIterator++).second); in nextElement()
/aoo41x/main/sd/source/ui/slidesorter/cache/
H A DSlsBitmapCache.cxx216 CacheBitmapContainer::iterator aIterator (mpBitmapContainer->find(rKey)); in BitmapIsUpToDate() local
217 if (aIterator != mpBitmapContainer->end()) in BitmapIsUpToDate()
218 bIsUpToDate = aIterator->second.IsUpToDate(); in BitmapIsUpToDate()
278 CacheBitmapContainer::iterator aIterator (mpBitmapContainer->find(rKey)); in ReleaseBitmap() local
279 if (aIterator != mpBitmapContainer->end()) in ReleaseBitmap()
281 UpdateCacheSize(aIterator->second, REMOVE); in ReleaseBitmap()
282 mpBitmapContainer->erase(aIterator); in ReleaseBitmap()
/aoo41x/main/UnoControls/source/base/
H A Dbasecontainercontrol.cxx310 OInterfaceIteratorHelper aIterator (*pInterfaceContainer) ; in addControl() local
313 while ( aIterator.hasMoreElements() ) in addControl()
315 ((XContainerListener*)aIterator.next())->elementInserted (aEvent) ; in addControl()
370 OInterfaceIteratorHelper aIterator (*pInterfaceContainer) ; in removeControl() local
372 while ( aIterator.hasMoreElements() ) in removeControl()
374 ((XContainerListener*)aIterator.next())->elementRemoved (aEvent) ; in removeControl()
H A Dmultiplexer.cxx61 OInterfaceIteratorHelper aIterator( *pContainer ); \
69 if( aIterator.hasMoreElements() ) \
71 INTERFACE * pListener = (INTERFACE *)aIterator.next(); \
/aoo41x/main/unotools/inc/unotools/
H A Ddigitgroupingiterator.hxx181 DigitGroupingIterator aIterator( rGroupings); in createForwardSequence() local
186 if (j == aIterator.getPos()) in createForwardSequence()
189 aIterator.advance(); in createForwardSequence()
/aoo41x/main/dtrans/source/generic/
H A Dgeneric_clipboard.cxx135 OInterfaceIteratorHelper aIterator(*pContainer); in setContents() local
137 while (aIterator.hasMoreElements()) in setContents()
139 Reference < XClipboardListener > xListener(aIterator.next(), UNO_QUERY); in setContents()
/aoo41x/main/framework/source/services/
H A Ddesktop.cxx1821 ::cppu::OInterfaceIteratorHelper aIterator( *pContainer ); in impl_sendQueryTerminationEvent()
1822 while ( aIterator.hasMoreElements() ) in impl_sendQueryTerminationEvent()
1826 …css::uno::Reference< css::frame::XTerminateListener > xListener(aIterator.next(), css::uno::UNO_QU… in impl_sendQueryTerminationEvent()
1843 aIterator.remove(); in impl_sendQueryTerminationEvent()
1884 ::cppu::OInterfaceIteratorHelper aIterator( *pContainer ); in impl_sendNotifyTerminationEvent()
1885 while ( aIterator.hasMoreElements() ) in impl_sendNotifyTerminationEvent()
1889 …css::uno::Reference< css::frame::XTerminateListener > xListener(aIterator.next(), css::uno::UNO_QU… in impl_sendNotifyTerminationEvent()
1899 aIterator.remove(); in impl_sendNotifyTerminationEvent()
/aoo41x/main/svx/source/sdr/contact/
H A Dviewcontactofsdrobjcustomshape.cxx128 SdrObjListIter aIterator(*pSdrObjRepresentation); in createViewIndependentPrimitive2DSequence() local
130 while(aIterator.IsMore()) in createViewIndependentPrimitive2DSequence()
132 SdrObject& rCandidate = *aIterator.Next(); in createViewIndependentPrimitive2DSequence()
/aoo41x/main/svx/source/engine3d/
H A Dhelperhittest3d.cxx190 SdrObjListIter aIterator(*pList, IM_DEEPNOGROUPS); in getAllHit3DObjectsSortedFrontToBack() local
195 while(aIterator.IsMore()) in getAllHit3DObjectsSortedFrontToBack()
197 … const E3dCompoundObject* pCandidate = dynamic_cast< const E3dCompoundObject* >(aIterator.Next()); in getAllHit3DObjectsSortedFrontToBack()
/aoo41x/main/sd/source/ui/sidebar/
H A DRecentlyUsedMasterPages.cxx434 MasterPageList::iterator aIterator ( in AddMasterPage() local
437 if (aIterator != mpMasterPages->end()) in AddMasterPage()
441 mpMasterPages->erase (aIterator); in AddMasterPage()
/aoo41x/main/dtrans/source/os2/clipb/
H A DOs2Clipboard.cxx238 OInterfaceIteratorHelper aIterator(*pContainer); in setContents() local
240 while (aIterator.hasMoreElements()) in setContents()
242 Reference < XClipboardListener > xListener(aIterator.next(), UNO_QUERY); in setContents()
/aoo41x/main/svl/source/items/
H A Ditempool.cxx408 …for(SfxItemPoolUserVector::iterator aIterator = aListCopy.begin(); aIterator != aListCopy.end(); a… in Free() local
410 SfxItemPoolUser* pSfxItemPoolUser = *aIterator; in Free()
/aoo41x/main/soltools/ldump/
H A Dldump.cxx480 ExportSetIter aIterator( *pBaseTab ); in PrintDefFile() local
481 for ( LibExport *pData = aIterator.GetFirst(); pData != NULL; in PrintDefFile()
482 pData = aIterator.GetNext() ) in PrintDefFile()
/aoo41x/main/sd/source/ui/unoidl/
H A DDrawController.cxx362 OInterfaceIteratorHelper aIterator (*pListeners); in selectionChanged() local
363 while (aIterator.hasMoreElements()) in selectionChanged()
369 aIterator.next()); in selectionChanged()
/aoo41x/main/sw/source/ui/dbui/
H A Dmmaddressblockpage.cxx844 ::std::vector<String>::iterator aIterator; in IMPL_LINK()
845 for( aIterator = pVector->begin(); aIterator != pVector->end(); ++aIterator) in IMPL_LINK()
846 m_aFieldCB.InsertEntry(*aIterator); in IMPL_LINK()
/aoo41x/main/svx/source/svdraw/
H A Dsvdpage.cxx1395 …for(::sdr::PageUserVector::iterator aIterator = aListCopy.begin(); aIterator != aListCopy.end(); a… in ~SdrPage()
1397 sdr::PageUser* pPageUser = *aIterator; in ~SdrPage()
/aoo41x/main/package/inc/
H A DZipEnumeration.hxx32 EntryHash::const_iterator aIterator; member in ZipEnumeration
/aoo41x/main/animations/source/animcore/
H A Danimcore.cxx2067 OInterfaceIteratorHelper aIterator( maChangeListener ); in fireChangeListener() local
2068 if( aIterator.hasMoreElements() ) in fireChangeListener()
2073 while( aIterator.hasMoreElements() ) in fireChangeListener()
2075 Reference< XChangesListener > xListener( aIterator.next(), UNO_QUERY ); in fireChangeListener()

Completed in 114 milliseconds

12