Lines Matching refs:it

434     ContentMap::iterator it =  in registerNotifier()  local
437 if( ! it->second.notifier ) in registerNotifier()
438 it->second.notifier = new NotifierList(); in registerNotifier()
440 std::list< Notifier* >& nlist = *( it->second.notifier ); in registerNotifier()
458 ContentMap::iterator it = m_aContent.find( aUnqPath ); in deregisterNotifier() local
459 if( it == m_aContent.end() ) in deregisterNotifier()
462 it->second.notifier->remove( pNotifier ); in deregisterNotifier()
464 if( ! it->second.notifier->size() ) in deregisterNotifier()
465 m_aContent.erase( it ); in deregisterNotifier()
505 …ContentMap::iterator it = m_aContent.insert( ContentMap::value_type( aUnqPath,UnqPathData() ) ).fi… in associate() local
508 load( it,true ); in associate()
510 PropertySet& properties = *(it->second.properties); in associate()
517 it->second.xC->addProperty( PropertyName,Attributes,DefaultValue ); in associate()
540 …ContentMap::iterator it = m_aContent.insert( ContentMap::value_type( aUnqPath,UnqPathData() ) ).fi… in deassociate() local
542 load( it,false ); in deassociate()
544 PropertySet& properties = *(it->second.properties); in deassociate()
552 if( it->second.xC.is() ) in deassociate()
553 it->second.xC->removeProperty( PropertyName ); in deassociate()
561 it->second.xS = 0; in deassociate()
562 it->second.xC = 0; in deassociate()
563 it->second.xA = 0; in deassociate()
833 shell::ContentMap::iterator it = m_aContent.find( aUnqPath ); in setv() local
834 PropertySet& properties = *( it->second.properties ); in setv()
869 if( !it->second.xS.is() ) in setv()
870 load( it,true ); in setv()
877 it->second.xC->addProperty( values[i].Name, in setv()
884 it->second.xS->setPropertyValue( values[i].Name,values[i].Value ); in setv()
1087 shell::ContentMap::iterator it = m_aContent.find( aUnqPath ); in getv() local
1088 commit( it,aFileStatus ); in getv()
1091 PropertySet& propset = *(it->second.properties); in getv()
1939 ContentMap::iterator it = in insertDefaultProperties() local
1942 load( it,false ); in insertDefaultProperties()
1946 PropertySet& properties = *(it->second.properties); in insertDefaultProperties()
2210 shell::load( const ContentMap::iterator& it, sal_Bool create ) in load() argument
2212 if( ! it->second.properties ) in load()
2213 it->second.properties = new PropertySet; in load()
2215 if( ( ! it->second.xS.is() || in load()
2216 ! it->second.xC.is() || in load()
2217 ! it->second.xA.is() ) in load()
2221 …uno::Reference< ucb::XPersistentPropertySet > xS = m_xFileRegistry->openPropertySet( it->first,cre… in load()
2227 it->second.xS = xS; in load()
2228 it->second.xC = xC; in load()
2229 it->second.xA = xA; in load()
2233 PropertySet& properties = *(it->second.properties); in load()
2270 shell::commit( const shell::ContentMap::iterator& it, in commit() argument
2277 if( it->second.properties == 0 ) in commit()
2279 rtl::OUString aPath = it->first; in commit()
2283 PropertySet& properties = *( it->second.properties ); in commit()
2371 osl::FileBase::E_None == osl::Directory::getVolumeInfo( it->first,aVolumeInfo ) && in commit()
2535 shell::ContentMap::iterator it = m_aContent.find( aUnqPath ); in getv() local
2536 commit( it,aFileStatus ); in getv()
2539 PropertySet& propset = *(it->second.properties); in getv()
2572 shell::ContentMap::iterator it = m_aContent.find( aName ); in getContentEventListeners() local
2573 if( it != m_aContent.end() && it->second.notifier ) in getContentEventListeners()
2575 std::list<Notifier*>& listOfNotifiers = *( it->second.notifier ); in getContentEventListeners()
2599 shell::ContentMap::iterator it = m_aContent.find( aName ); in getContentDeletedEventListeners() local
2600 if( it != m_aContent.end() && it->second.notifier ) in getContentDeletedEventListeners()
2602 std::list<Notifier*>& listOfNotifiers = *( it->second.notifier ); in getContentDeletedEventListeners()
2621 std::list< ContentEventNotifier* >::iterator it = listeners->begin(); in notifyInsert() local
2622 while( it != listeners->end() ) in notifyInsert()
2624 (*it)->notifyChildInserted( aChildName ); in notifyInsert()
2625 delete (*it); in notifyInsert()
2626 ++it; in notifyInsert()
2635 std::list< ContentEventNotifier* >::iterator it = listeners->begin(); in notifyContentDeleted() local
2636 while( it != listeners->end() ) in notifyContentDeleted()
2638 (*it)->notifyDeleted(); in notifyContentDeleted()
2639 delete (*it); in notifyContentDeleted()
2640 ++it; in notifyContentDeleted()
2650 std::list< ContentEventNotifier* >::iterator it = listeners->begin(); in notifyContentRemoved() local
2651 while( it != listeners->end() ) in notifyContentRemoved()
2653 (*it)->notifyRemoved( aChildName ); in notifyContentRemoved()
2654 delete (*it); in notifyContentRemoved()
2655 ++it; in notifyContentRemoved()
2670 shell::ContentMap::iterator it = m_aContent.find( aName ); in getPropertySetListeners() local
2671 if( it != m_aContent.end() && it->second.notifier ) in getPropertySetListeners()
2673 std::list<Notifier*>& listOfNotifiers = *( it->second.notifier ); in getPropertySetListeners()
2693 std::list< PropertySetInfoChangeNotifier* >::iterator it = listeners->begin(); in notifyPropertyAdded() local
2694 while( it != listeners->end() ) in notifyPropertyAdded()
2696 (*it)->notifyPropertyAdded( aPropertyName ); in notifyPropertyAdded()
2697 delete (*it); in notifyPropertyAdded()
2698 ++it; in notifyPropertyAdded()
2708 std::list< PropertySetInfoChangeNotifier* >::iterator it = listeners->begin(); in notifyPropertyRemoved() local
2709 while( it != listeners->end() ) in notifyPropertyRemoved()
2711 (*it)->notifyPropertyRemoved( aPropertyName ); in notifyPropertyRemoved()
2712 delete (*it); in notifyPropertyRemoved()
2713 ++it; in notifyPropertyRemoved()
2831 std::list< ContentEventNotifier* >::iterator it = listeners->begin(); in notifyContentExchanged() local
2832 while( it != listeners->end() ) in notifyContentExchanged()
2834 (*it)->notifyExchanged(); in notifyContentExchanged()
2835 delete (*it); in notifyContentExchanged()
2836 ++it; in notifyContentExchanged()
2852 shell::ContentMap::iterator it = m_aContent.find( aName ); in getPropertyChangeNotifier() local
2853 if( it != m_aContent.end() && it->second.notifier ) in getPropertyChangeNotifier()
2855 std::list<Notifier*>& listOfNotifiers = *( it->second.notifier ); in getPropertyChangeNotifier()
2874 std::list< PropertyChangeNotifier* >::iterator it = listeners->begin(); in notifyPropertyChanges() local
2875 while( it != listeners->end() ) in notifyPropertyChanges()
2877 (*it)->notifyPropertyChanged( seqChanged ); in notifyPropertyChanges()
2878 delete (*it); in notifyPropertyChanges()
2879 ++it; in notifyPropertyChanges()
2927 ContentMap::iterator it = m_aContent.find( old_Name ); in erasePersistentSet() local
2928 if( it != m_aContent.end() ) in erasePersistentSet()
2930 it->second.xS = 0; in erasePersistentSet()
2931 it->second.xC = 0; in erasePersistentSet()
2932 it->second.xA = 0; in erasePersistentSet()
2934 delete it->second.properties; in erasePersistentSet()
2935 it->second.properties = 0; in erasePersistentSet()