Lines Matching refs:stats
129 uno::Sequence< beans::NamedValue > stats; in getPropertyValue() local
155 …rops->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("ParagraphCount") ) ) >>= stats; in getPropertyValue()
156 …s->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("DocumentStatistic") ) ) >>= stats; in getPropertyValue()
158 sal_Int32 nLen = stats.getLength(); in getPropertyValue()
162 if ( rPropName.equals( stats[ index ].Name ) ) in getPropertyValue()
164 aReturn = stats[ index ].Value; in getPropertyValue()
177 uno::Sequence< beans::NamedValue > stats; in setPropertyValue() local
178 …s->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("DocumentStatistic") ) ) >>= stats; in setPropertyValue()
180 sal_Int32 nLen = stats.getLength(); in setPropertyValue()
183 if ( rPropName.equals( stats[ index ].Name ) ) in setPropertyValue()
185 stats[ index ].Value = aValue; in setPropertyValue()
186 …yValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("DocumentStatistic") ), uno::makeAny( stats ) ); in setPropertyValue()