Lines Matching refs:it

117     std::vector< DAVPropertyValue >::const_iterator it  in ContentProperties()  local
122 while ( it != end ) in ContentProperties()
124 addProperty( (*it) ); in ContentProperties()
125 ++it; in ContentProperties()
197 PropertyValueMap::const_iterator it = m_xProps->find( rName ); in get() local
200 if ( it == end ) in get()
202 it = m_xProps->begin(); in get()
203 while ( it != end ) in get()
205 if ( (*it).first.equalsIgnoreAsciiCase( rName ) ) in get()
206 return &(*it).second; in get()
208 ++it; in get()
213 return &(*it).second; in get()
399 std::vector< rtl::OUString >::const_iterator it = rProps.begin(); in addProperties() local
402 while ( it != end ) in addProperties()
404 const rtl::OUString & rName = (*it); in addProperties()
419 ++it; in addProperties()
426 PropertyValueMap::const_iterator it = rProps.m_xProps->begin(); in addProperties() local
429 while ( it != end ) in addProperties()
432 (*it).first, (*it).second.value(), (*it).second.isCaseSensitive() ); in addProperties()
433 ++it; in addProperties()
441 std::vector< DAVPropertyValue >::const_iterator it = rProps.begin(); in addProperties() local
444 while ( it != end ) in addProperties()
446 addProperty( (*it) ); in addProperties()
447 ++it; in addProperties()
638 PropertyValueMap::const_iterator it = props->begin(); in addProperties() local
641 while ( it != end ) in addProperties()
643 if ( isCachable( (*it).first, (*it).second.isCaseSensitive() ) ) in addProperties()
644 m_aProps.addProperty( (*it).first, in addProperties()
645 (*it).second.value(), in addProperties()
646 (*it).second.isCaseSensitive() ); in addProperties()
648 ++it; in addProperties()
656 std::vector< DAVPropertyValue >::const_iterator it = rProps.begin(); in addProperties() local
659 while ( it != end ) in addProperties()
661 if ( isCachable( (*it).Name, (*it).IsCaseSensitive ) ) in addProperties()
662 m_aProps.addProperty( (*it) ); in addProperties()
664 ++it; in addProperties()