Searched refs:xEqProp (Results  1 – 8 of 8) sorted by relevance
| /aoo42x/main/chart2/source/controller/itemsetwrapper/ | 
| H A D | RegressionCurveItemConverter.cxx | 174                 uno::Reference< beans::XPropertySet > xEqProp( xCurve->getEquationProperties());  in ApplySpecialItem()  local 175                 OSL_ASSERT( xEqProp.is());  in ApplySpecialItem() 177                 if( xEqProp.is() &&  in ApplySpecialItem() 178                     (xEqProp->getPropertyValue( C2U( "ShowEquation" )) >>= bOldShow) &&  in ApplySpecialItem() 198                 OSL_ASSERT( xEqProp.is());  in ApplySpecialItem() 200                 if( xEqProp.is() &&  in ApplySpecialItem() 241                 OSL_ASSERT( xEqProp.is());  in FillSpecialItem() 243                 if( xEqProp.is() &&  in FillSpecialItem() 244                     (xEqProp->getPropertyValue( C2U( "ShowEquation" )) >>= bShow))  in FillSpecialItem() 258                 OSL_ASSERT( xEqProp.is());  in FillSpecialItem() [all …] 
 | 
| H A D | StatisticsItemConverter.cxx | 401             if( xEqProp.is())  in ApplySpecialItem() 404                 xEqProp->getPropertyValue( C2U("ShowEquation")) >>= bShowEq;  in ApplySpecialItem() 409                     xEqProp->setPropertyValue( C2U("ShowEquation"), uno::makeAny( bNewShowEq ));  in ApplySpecialItem() 419             if( xEqProp.is())  in ApplySpecialItem() 422                 xEqProp->getPropertyValue( C2U("ShowCorrelationCoefficient")) >>= bShowCoeff;  in ApplySpecialItem() 630 …  uno::Reference< beans::XPropertySet > xEqProp( lcl_getEquationProperties( GetPropertySet(), 0 ));  in FillSpecialItem()  local 631             if( xEqProp.is())  in FillSpecialItem() 632                 xEqProp->getPropertyValue( C2U("ShowEquation")) >>= bShowEq;  in FillSpecialItem() 640 …  uno::Reference< beans::XPropertySet > xEqProp( lcl_getEquationProperties( GetPropertySet(), 0 ));  in FillSpecialItem()  local 641             if( xEqProp.is())  in FillSpecialItem() [all …] 
 | 
| /aoo42x/main/chart2/source/controller/main/ | 
| H A D | ChartController_Insert.cxx | 584         uno::Reference< beans::XPropertySet > xEqProp( xRegCurve->getEquationProperties());  in executeDispatch_InsertTrendlineEquation()  local 585         if( xEqProp.is())  in executeDispatch_InsertTrendlineEquation() 592             xEqProp->setPropertyValue( C2U("ShowEquation"), uno::makeAny( true ));  in executeDispatch_InsertTrendlineEquation() 593 …          xEqProp->setPropertyValue( C2U("ShowCorrelationCoefficient"), uno::makeAny( bInsertR2 ));  in executeDispatch_InsertTrendlineEquation() 601     uno::Reference< beans::XPropertySet > xEqProp(  in executeDispatch_InsertR2Value()  local 603     if( xEqProp.is())  in executeDispatch_InsertR2Value() 609         xEqProp->setPropertyValue( C2U("ShowCorrelationCoefficient"), uno::makeAny( true ));  in executeDispatch_InsertR2Value() 616     uno::Reference< beans::XPropertySet > xEqProp(  in executeDispatch_DeleteR2Value()  local 618     if( xEqProp.is())  in executeDispatch_DeleteR2Value() 624         xEqProp->setPropertyValue( C2U("ShowCorrelationCoefficient"), uno::makeAny( false ));  in executeDispatch_DeleteR2Value()
  | 
| H A D | ChartController_Tools.cxx | 732                 uno::Reference< beans::XPropertySet > xEqProp(  in executeDispatch_Delete()  local 734                 if( xEqProp.is())  in executeDispatch_Delete() 744                         xEqProp->setPropertyValue( C2U("ShowEquation"), uno::makeAny( false ));  in executeDispatch_Delete() 745 …              xEqProp->setPropertyValue( C2U("ShowCorrelationCoefficient"), uno::makeAny( false ));  in executeDispatch_Delete()
  | 
| H A D | ControllerCommandDispatch.cxx | 282                     uno::Reference< beans::XPropertySet > xEqProp(  in update()  local 284                     if( xEqProp.is())  in update() 285 …                    xEqProp->getPropertyValue( C2U("ShowCorrelationCoefficient") ) >>= bHasR2Value;  in update()
  | 
| /aoo42x/main/chart2/source/tools/ | 
| H A D | RegressionCurveHelper.cxx | 459 …              uno::Reference< beans::XPropertySet > xEqProp( xRegCurve->getEquationProperties() ) ;  in removeEquations()  local 460                         if( xEqProp.is())  in removeEquations() 462                             xEqProp->setPropertyValue( C2U("ShowEquation"), uno::makeAny( false ));  in removeEquations() 463 …              xEqProp->setPropertyValue( C2U("ShowCorrelationCoefficient"), uno::makeAny( false ));  in removeEquations() 666 …Reference< beans::XPropertySet > xEqProp( xCurve->getEquationProperties()); // since m233: , uno::…  in resetEquationPosition()  local 667             if( xEqProp->getPropertyValue( aPosPropertyName ).hasValue())  in resetEquationPosition() 668                 xEqProp->setPropertyValue( aPosPropertyName, uno::Any());  in resetEquationPosition()
  | 
| /aoo42x/main/xmloff/source/chart/ | 
| H A D | SchXMLPlotAreaContext.cxx | 1137         uno::Reference< beans::XPropertySet > xEqProp;  in StartElement()  local 1140             xEqProp.set( xFact->createInstance(  in StartElement() 1142         if( xEqProp.is())  in StartElement() 1156                         pPropStyleContext->FillPropertySet( xEqProp );  in StartElement() 1159 …xEqProp->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM("ShowEquation")), uno::makeAny( b…  in StartElement() 1160 …xEqProp->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM("ShowCorrelationCoefficient")), u…  in StartElement() 1167 …           xEqProp->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "RelativePosition" )),  in StartElement() 1171             mrRegressionStyle.m_xEquationProperties.set( xEqProp );  in StartElement()
  | 
| /aoo42x/main/chart2/source/view/charttypes/ | 
| H A D | VSeriesPlotter.cxx | 1039         uno::Reference< beans::XPropertySet > xEqProp( aCurveList[nN]->getEquationProperties());  in createRegressionCurvesShapes()  local 1040         if( xEqProp.is())  in createRegressionCurvesShapes() 1044                 xEqProp, xEquationTarget, xRegressionCurveCalculator,  in createRegressionCurvesShapes()
  | 
        Completed in 556 milliseconds