Lines Matching refs:it1

442     std::list<Notifier*>::iterator it1 = nlist.begin();  in registerNotifier()  local
443 while( it1 != nlist.end() ) // Every "Notifier" only once in registerNotifier()
445 if( *it1 == pNotifier ) return; in registerNotifier()
446 ++it1; in registerNotifier()
498 shell::PropertySet::iterator it1 = m_aDefaultProperties.find( newProperty ); in associate() local
499 if( it1 != m_aDefaultProperties.end() ) in associate()
511 it1 = properties.find( newProperty ); in associate()
512 if( it1 != properties.end() ) in associate()
534 shell::PropertySet::iterator it1 = m_aDefaultProperties.find( oldProperty ); in deassociate() local
535 if( it1 != m_aDefaultProperties.end() ) in deassociate()
546 it1 = properties.find( oldProperty ); in deassociate()
547 if( it1 == properties.end() ) in deassociate()
550 properties.erase( it1 ); in deassociate()
835 shell::PropertySet::iterator it1; in setv() local
841 it1 = properties.find( toset ); in setv()
842 if( it1 == properties.end() ) in setv()
848 aAny = it1->getValue(); in setv()
852 if( it1->getAttributes() & beans::PropertyAttribute::READONLY ) in setv()
864 it1->setValue( values[i].Value ); // Put the new value into the local cash in setv()
866 if( ! it1->IsNative() ) in setv()
873 it1->getState() == beans::PropertyState_DEFAULT_VALUE ) in setv()
876 it1->setState( beans::PropertyState_DIRECT_VALUE ); in setv()
1090 shell::PropertySet::iterator it1; in getv() local
1096 it1 = propset.find( readProp ); in getv()
1097 if( it1 == propset.end() ) in getv()
1100 seq[i] = it1->getValue(); in getv()
1949 shell::PropertySet::iterator it1 = m_aDefaultProperties.begin(); in insertDefaultProperties() local
1950 while( it1 != m_aDefaultProperties.end() ) in insertDefaultProperties()
1952 if( ContentNotDefau && it1->getPropertyName() == ContentType ) in insertDefaultProperties()
1957 properties.insert( *it1 ); in insertDefaultProperties()
1958 ++it1; in insertDefaultProperties()
2275 shell::PropertySet::iterator it1; in commit() local
2285 it1 = properties.find( MyProperty( Title ) ); in commit()
2286 if( it1 != properties.end() ) in commit()
2291 it1->setValue( aAny ); in commit()
2295 it1 = properties.find( MyProperty( CasePreservingURL ) ); in commit()
2296 if( it1 != properties.end() ) in commit()
2301 it1->setValue( aAny ); in commit()
2357 it1 = properties.find( MyProperty( IsVolume ) ); in commit()
2358 if( it1 != properties.end() ) in commit()
2359 it1->setValue( uno::makeAny( isVolume ) ); in commit()
2361 it1 = properties.find( MyProperty( IsFolder ) ); in commit()
2362 if( it1 != properties.end() ) in commit()
2363 it1->setValue( uno::makeAny( isDirectory ) ); in commit()
2365 it1 = properties.find( MyProperty( IsDocument ) ); in commit()
2366 if( it1 != properties.end() ) in commit()
2367 it1->setValue( uno::makeAny( isFile ) ); in commit()
2380 it1 = properties.find( MyProperty( IsRemote ) ); in commit()
2381 if( it1 != properties.end() ) in commit()
2382 it1->setValue( uno::makeAny( isRemote ) ); in commit()
2384 it1 = properties.find( MyProperty( IsRemoveable ) ); in commit()
2385 if( it1 != properties.end() ) in commit()
2386 it1->setValue( uno::makeAny( isRemoveable ) ); in commit()
2388 it1 = properties.find( MyProperty( IsCompactDisc ) ); in commit()
2389 if( it1 != properties.end() ) in commit()
2390 it1->setValue( uno::makeAny( isCompactDisc ) ); in commit()
2392 it1 = properties.find( MyProperty( IsFloppy ) ); in commit()
2393 if( it1 != properties.end() ) in commit()
2394 it1->setValue( uno::makeAny( isFloppy ) ); in commit()
2400 it1 = properties.find( MyProperty( IsRemote ) ); in commit()
2401 if( it1 != properties.end() ) in commit()
2402 it1->setValue( aAny ); in commit()
2404 it1 = properties.find( MyProperty( IsRemoveable ) ); in commit()
2405 if( it1 != properties.end() ) in commit()
2406 it1->setValue( aAny ); in commit()
2408 it1 = properties.find( MyProperty( IsCompactDisc ) ); in commit()
2409 if( it1 != properties.end() ) in commit()
2410 it1->setValue( aAny ); in commit()
2412 it1 = properties.find( MyProperty( IsFloppy ) ); in commit()
2413 if( it1 != properties.end() ) in commit()
2414 it1->setValue( aAny ); in commit()
2422 it1 = properties.find( MyProperty( Size ) ); in commit()
2423 if( it1 != properties.end() ) in commit()
2424 it1->setValue( uno::makeAny( dirSize ) ); in commit()
2426 it1 = properties.find( MyProperty( IsReadOnly ) ); in commit()
2427 if( it1 != properties.end() ) in commit()
2433 it1->setValue( uno::makeAny( readonly ) ); in commit()
2437 it1 = properties.find( MyProperty( IsHidden ) ); in commit()
2438 if( it1 != properties.end() ) in commit()
2444 it1->setValue( uno::makeAny( ishidden ) ); in commit()
2448 it1 = properties.find( MyProperty( DateModified ) ); in commit()
2449 if( it1 != properties.end() ) in commit()
2470 it1->setValue( uno::makeAny( aDateTime ) ); in commit()
2474 it1 = properties.find( MyProperty( CreatableContentsInfo ) ); in commit()
2475 if( it1 != properties.end() ) in commit()
2476 it1->setValue( uno::makeAny( in commit()
2538 shell::PropertySet::iterator it1; in getv() local
2544 it1 = propset.find( readProp ); in getv()
2545 if( it1 == propset.end() ) in getv()
2548 seq[i] = it1->getValue(); in getv()
2576 std::list<Notifier*>::iterator it1 = listOfNotifiers.begin(); in getContentEventListeners() local
2577 while( it1 != listOfNotifiers.end() ) in getContentEventListeners()
2579 Notifier* pointer = *it1; in getContentEventListeners()
2583 ++it1; in getContentEventListeners()
2603 std::list<Notifier*>::iterator it1 = listOfNotifiers.begin(); in getContentDeletedEventListeners() local
2604 while( it1 != listOfNotifiers.end() ) in getContentDeletedEventListeners()
2606 Notifier* pointer = *it1; in getContentDeletedEventListeners()
2610 ++it1; in getContentDeletedEventListeners()
2674 std::list<Notifier*>::iterator it1 = listOfNotifiers.begin(); in getPropertySetListeners() local
2675 while( it1 != listOfNotifiers.end() ) in getPropertySetListeners()
2677 Notifier* pointer = *it1; in getPropertySetListeners()
2681 ++it1; in getPropertySetListeners()
2791 std::list<Notifier*>::iterator it1 = listOfNotifiers.begin(); in getContentExchangedEventListeners() local
2792 while( it1 != listOfNotifiers.end() ) in getContentExchangedEventListeners()
2794 Notifier* pointer = *it1; in getContentExchangedEventListeners()
2798 ++it1; in getContentExchangedEventListeners()
2856 std::list<Notifier*>::iterator it1 = listOfNotifiers.begin(); in getPropertyChangeNotifier() local
2857 while( it1 != listOfNotifiers.end() ) in getPropertyChangeNotifier()
2859 Notifier* pointer = *it1; in getPropertyChangeNotifier()
2863 ++it1; in getPropertyChangeNotifier()