Lines Matching refs:rName

174 bool ContentProperties::contains( const rtl::OUString & rName ) const  in contains()
176 if ( get( rName ) ) in contains()
184 const rtl::OUString & rName ) const in getValue()
186 const PropertyValue * pProp = get( rName ); in getValue()
195 const rtl::OUString & rName ) const in get()
197 PropertyValueMap::const_iterator it = m_xProps->find( rName ); in get()
205 if ( (*it).first.equalsIgnoreAsciiCase( rName ) ) in get()
383 const rtl::OUString & rName = rProps[ n ].Name; in containsAllNames() local
384 if ( !contains( rName ) ) in containsAllNames()
387 rNamesNotContained.push_back( rName ); in containsAllNames()
404 const rtl::OUString & rName = (*it); in addProperties() local
406 if ( !contains( rName ) ) // ignore duplicates in addProperties()
408 const PropertyValue * pProp = rContentProps.get( rName ); in addProperties()
412 addProperty( rName, pProp->value(), pProp->isCaseSensitive() ); in addProperties()
416 addProperty( rName, uno::Any(), false ); in addProperties()
458 void ContentProperties::addProperty( const rtl::OUString & rName, in addProperty() argument
462 if ( rName.equals( DAVProperties::CREATIONDATE ) ) in addProperty()
479 else if ( rName.equals( DAVProperties::GETCONTENTLENGTH ) ) in addProperty()
488 else if ( rName.equalsAsciiL( in addProperty()
501 else if ( rName.equals( DAVProperties::GETCONTENTTYPE ) ) in addProperty()
507 else if ( rName.equalsAsciiL( RTL_CONSTASCII_STRINGPARAM( "Content-Type" ) ) ) in addProperty()
519 else if ( rName.equals( DAVProperties::GETLASTMODIFIED ) ) in addProperty()
530 else if ( rName.equalsAsciiL( in addProperty()
548 else if ( rName.equals( DAVProperties::RESOURCETYPE ) ) in addProperty()
572 (*m_xProps)[ rName ] = PropertyValue( rValue, bIsCaseSensitive ); in addProperty()
585 bool isCachable( rtl::OUString const & rName, in isCachable() argument
613 if ( rName.equals( aNonCachableProps[ n ] ) ) in isCachable()
617 if ( rName.equalsIgnoreAsciiCase( aNonCachableProps[ n ] ) ) in isCachable()