Lines Matching refs:aCurves

253         uno::Sequence< uno::Reference< XRegressionCurve > > aCurves(  in hasMeanValueLine()  local
255 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in hasMeanValueLine()
257 if( isMeanValueLine( aCurves[i] )) in hasMeanValueLine()
288 uno::Sequence< uno::Reference< XRegressionCurve > > aCurves( in getMeanValueLine() local
290 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in getMeanValueLine()
292 if( isMeanValueLine( aCurves[i] )) in getMeanValueLine()
293 return aCurves[i]; in getMeanValueLine()
337 Sequence< Reference< XRegressionCurve > > aCurves( in removeMeanValueLine() local
339 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in removeMeanValueLine()
341 if( isMeanValueLine( aCurves[i] )) in removeMeanValueLine()
343 xRegCnt->removeRegressionCurve( aCurves[i] ); in removeMeanValueLine()
417 uno::Sequence< uno::Reference< chart2::XRegressionCurve > > aCurves( in removeAllExceptMeanValueLine() local
420 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in removeAllExceptMeanValueLine()
422 if( ! isMeanValueLine( aCurves[i] )) in removeAllExceptMeanValueLine()
424 aCurvesToDelete.push_back( aCurves[ i ] ); in removeAllExceptMeanValueLine()
450 uno::Sequence< uno::Reference< chart2::XRegressionCurve > > aCurves( in removeEquations() local
452 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in removeEquations()
454 if( !isMeanValueLine( aCurves[i] ) ) in removeEquations()
456 uno::Reference< chart2::XRegressionCurve > xRegCurve( aCurves[ i ] ); in removeEquations()
506 uno::Sequence< uno::Reference< chart2::XRegressionCurve > > aCurves( in getFirstCurveNotMeanValueLine() local
509 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in getFirstCurveNotMeanValueLine()
511 if( ! isMeanValueLine( aCurves[i] )) in getFirstCurveNotMeanValueLine()
513 return aCurves[ i ]; in getFirstCurveNotMeanValueLine()
579 Sequence< Reference< XRegressionCurve > > aCurves( in getFirstRegressTypeNotMeanValueLine() local
581 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in getFirstRegressTypeNotMeanValueLine()
583 tRegressionType eType = getRegressionType( aCurves[i] ); in getFirstRegressTypeNotMeanValueLine()
645 uno::Sequence< uno::Reference< chart2::XRegressionCurve > > aCurves( in getAllRegressionCurvesNotMeanValueLine() local
647 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in getAllRegressionCurvesNotMeanValueLine()
649 if( ! isMeanValueLine( aCurves[i] )) in getAllRegressionCurvesNotMeanValueLine()
650 aResult.push_back( aCurves[i] ); in getAllRegressionCurvesNotMeanValueLine()
683 uno::Sequence< uno::Reference< XRegressionCurve > > aCurves( in getRegressionCurveIndex() local
685 for( sal_Int32 i = 0; i < aCurves.getLength(); ++i ) in getRegressionCurveIndex()
687 if( xCurve == aCurves[i] ) in getRegressionCurveIndex()