Lines Matching refs:aSubtotals

762             ::std::vector< GeneralFunction > aSubtotals;  in convertRowColPageField()
769 if( maModel.mbSumSubtotal ) aSubtotals.push_back( GeneralFunction_SUM ); in convertRowColPageField()
770 if( maModel.mbCountASubtotal ) aSubtotals.push_back( GeneralFunction_COUNT ); in convertRowColPageField()
771 if( maModel.mbAverageSubtotal ) aSubtotals.push_back( GeneralFunction_AVERAGE ); in convertRowColPageField()
772 if( maModel.mbMaxSubtotal ) aSubtotals.push_back( GeneralFunction_MAX ); in convertRowColPageField()
773 if( maModel.mbMinSubtotal ) aSubtotals.push_back( GeneralFunction_MIN ); in convertRowColPageField()
774 if( maModel.mbProductSubtotal ) aSubtotals.push_back( GeneralFunction_PRODUCT ); in convertRowColPageField()
775 if( maModel.mbCountSubtotal ) aSubtotals.push_back( GeneralFunction_COUNTNUMS ); in convertRowColPageField()
776 if( maModel.mbStdDevSubtotal ) aSubtotals.push_back( GeneralFunction_STDEV ); in convertRowColPageField()
777 if( maModel.mbStdDevPSubtotal ) aSubtotals.push_back( GeneralFunction_STDEVP ); in convertRowColPageField()
778 if( maModel.mbVarSubtotal ) aSubtotals.push_back( GeneralFunction_VAR ); in convertRowColPageField()
779 if( maModel.mbVarPSubtotal ) aSubtotals.push_back( GeneralFunction_VARP ); in convertRowColPageField()
781 if( aSubtotals.empty() && maModel.mbDefaultSubtotal ) in convertRowColPageField()
782 aSubtotals.push_back( GeneralFunction_AUTO ); in convertRowColPageField()
783 aPropSet.setProperty( PROP_Subtotals, ContainerHelper::vectorToSequence( aSubtotals ) ); in convertRowColPageField()