Lines Matching refs:rProp

115     for ( const auto& rProp : rResource.properties )  in ContentProperties()  local
117 addProperty( rProp ); in ContentProperties()
225 for ( const beans::Property & rProp : rProps ) in UCBNamesToDAVNames() local
227 if ( rProp.Name == "Title" ) in UCBNamesToDAVNames()
232 else if ( rProp.Name == "DateCreated" || rProp.Name == DAVProperties::CREATIONDATE ) in UCBNamesToDAVNames()
240 else if ( rProp.Name == "DateModified" || rProp.Name == DAVProperties::GETLASTMODIFIED ) in UCBNamesToDAVNames()
248 else if ( rProp.Name == "MediaType" || rProp.Name == DAVProperties::GETCONTENTTYPE ) in UCBNamesToDAVNames()
256 else if ( rProp.Name == "Size" || rProp.Name == DAVProperties::GETCONTENTLENGTH ) in UCBNamesToDAVNames()
264 …else if ( rProp.Name == "ContentType" || rProp.Name == "IsDocument" || rProp.Name == "IsFolder" ||… in UCBNamesToDAVNames()
274 propertyNames.push_back( rProp.Name ); in UCBNamesToDAVNames()
295 for ( const beans::Property & rProp : rProps ) in UCBNamesToHTTPNames() local
297 if ( rProp.Name == "DateModified" ) in UCBNamesToHTTPNames()
301 else if ( rProp.Name == "MediaType" ) in UCBNamesToHTTPNames()
305 else if ( rProp.Name == "Size" ) in UCBNamesToHTTPNames()
311 propertyNames.push_back( rProp.Name ); in UCBNamesToHTTPNames()
323 for ( const auto& rProp : rProps ) in containsAllNames() local
325 const OUString & rName = rProp.Name; in containsAllNames()
360 void ContentProperties::addProperty( const DAVPropertyValue & rProp ) in addProperty() argument
362 addProperty( rProp.Name, rProp.Value, rProp.IsCaseSensitive ); in addProperty()
538 for ( const auto& rProp : *props ) in addProperties()
540 if ( isCachable( rProp.first, rProp.second.isCaseSensitive() ) ) in addProperties()
541 m_aProps.addProperty( rProp.first, in addProperties()
542 rProp.second.value(), in addProperties()
543 rProp.second.isCaseSensitive() ); in addProperties()
551 for ( const auto& rProp : rProps ) in addProperties() local
553 if ( isCachable( rProp.Name, rProp.IsCaseSensitive ) ) in addProperties()
554 m_aProps.addProperty( rProp ); in addProperties()