Lines Matching refs:it

213             DocumentList::const_iterator it = m_aDocs.begin();  in notifyEvent()  local
214 while ( it != m_aDocs.end() ) in notifyEvent()
216 if ( (*it).second.xModel == xModel ) in notifyEvent()
221 ++it; in notifyEvent()
224 if ( it == m_aDocs.end() ) in notifyEvent()
278 DocumentList::iterator it = m_aDocs.begin(); in notifyEvent() local
279 while ( it != m_aDocs.end() ) in notifyEvent()
281 if ( (*it).second.xModel == xModel ) in notifyEvent()
289 rtl::OUString aDocId( (*it).first ); in notifyEvent()
294 ++it; in notifyEvent()
297 OSL_ENSURE( it != m_aDocs.end(), in notifyEvent()
300 if ( it != m_aDocs.end() ) in notifyEvent()
310 m_aDocs.erase( it ); in notifyEvent()
325 DocumentList::iterator it = m_aDocs.begin(); in notifyEvent() local
326 while ( it != m_aDocs.end() ) in notifyEvent()
328 if ( (*it).second.xModel == xModel ) in notifyEvent()
340 (*it).second.xStorage = xStorage; in notifyEvent()
343 ++it; in notifyEvent()
346 OSL_ENSURE( it != m_aDocs.end(), in notifyEvent()
361 DocumentList::iterator it = m_aDocs.begin(); in notifyEvent() local
362 while ( it != m_aDocs.end() ) in notifyEvent()
364 if ( (*it).second.xModel == xModel ) in notifyEvent()
376 (*it).second.xStorage = xStorage; in notifyEvent()
379 (*it).second.aTitle = DocumentInfo::getDocumentTitle( xModel ); in notifyEvent()
382 ++it; in notifyEvent()
385 OSL_ENSURE( it != m_aDocs.end(), in notifyEvent()
400 DocumentList::iterator it = m_aDocs.begin(); in notifyEvent() local
401 while ( it != m_aDocs.end() ) in notifyEvent()
403 if ( (*it).second.xModel == xModel ) in notifyEvent()
407 (*it).second.aTitle = aTitle; in notifyEvent()
423 ++it; in notifyEvent()
529 DocumentList::const_iterator it = m_aDocs.begin(); in buildDocumentsList() local
530 while ( it != m_aDocs.end() ) in buildDocumentsList()
532 if ( (*it).second.xModel == xModel ) in buildDocumentsList()
537 ++it; in buildDocumentsList()
540 if ( it == m_aDocs.end() ) in buildDocumentsList()
583 DocumentList::const_iterator it = m_aDocs.find( rDocId ); in queryStorage() local
584 if ( it == m_aDocs.end() ) in queryStorage()
587 return (*it).second.xStorage; in queryStorage()
603 DocumentList::const_iterator it = m_aDocs.find( rDocId ); in queryDocumentModel() local
604 if ( it == m_aDocs.end() ) in queryDocumentModel()
607 return (*it).second.xModel; in queryDocumentModel()
618 DocumentList::const_iterator it = m_aDocs.begin(); in queryDocuments() local
619 while ( it != m_aDocs.end() ) in queryDocuments()
621 aRet[ nPos ] = (*it).first; in queryDocuments()
622 ++it; in queryDocuments()
634 DocumentList::const_iterator it = m_aDocs.find( rDocId ); in queryStorageTitle() local
635 if ( it == m_aDocs.end() ) in queryStorageTitle()
638 return (*it).second.aTitle; in queryStorageTitle()