Lines Matching refs:index

74 double VDataSequence::getValue( sal_Int32 index ) const  in getValue()
76 if( 0<=index && index<Doubles.getLength() ) in getValue()
77 return Doubles[index]; in getValue()
86 sal_Int32 VDataSequence::detectNumberFormatKey( sal_Int32 index ) const in detectNumberFormatKey()
91 if( -1<=index && index<Doubles.getLength() && in detectNumberFormatKey()
94 nNumberFormatKey = Model->getNumberFormatKeyByIndex( index ); in detectNumberFormatKey()
479 double VDataSeries::getXValue( sal_Int32 index ) const in getXValue()
484 if( 0<=index && index<m_aValues_X.getLength() ) in getXValue()
485 fRet = m_aValues_X.Doubles[index]; in getXValue()
492 if( 0<=index /*&& index < m_nPointCount*/ ) in getXValue()
493 fRet = index+1;//first category (index 0) matches with real number 1.0 in getXValue()
501 double VDataSeries::getYValue( sal_Int32 index ) const in getYValue()
506 if( 0<=index && index<m_aValues_Y.getLength() ) in getYValue()
507 fRet = m_aValues_Y.Doubles[index]; in getYValue()
514 if( 0<=index /*&& index < m_nPointCount*/ ) in getYValue()
515 fRet = index+1;//first category (index 0) matches with real number 1.0 in getYValue()
523 double VDataSeries::getY_Min( sal_Int32 index ) const in getY_Min()
525 return m_aValues_Y_Min.getValue( index ); in getY_Min()
527 double VDataSeries::getY_Max( sal_Int32 index ) const in getY_Max()
529 return m_aValues_Y_Max.getValue( index ); in getY_Max()
531 double VDataSeries::getY_First( sal_Int32 index ) const in getY_First()
533 return m_aValues_Y_First.getValue( index ); in getY_First()
535 double VDataSeries::getY_Last( sal_Int32 index ) const in getY_Last()
537 return m_aValues_Y_Last.getValue( index ); in getY_Last()
539 double VDataSeries::getBubble_Size( sal_Int32 index ) const in getBubble_Size()
541 return m_aValues_Bubble_Size.getValue( index ); in getBubble_Size()
588 sal_Int32 VDataSeries::detectNumberFormatKey( sal_Int32 index ) const in detectNumberFormatKey()
592 nRet = m_pValueSequenceForDataLabelNumberFormatDetection->detectNumberFormatKey( index ); in detectNumberFormatKey()
630 double VDataSeries::getMinimumofAllDifferentYValues( sal_Int32 index ) const in getMinimumofAllDifferentYValues()
639 double fY_Min = getY_Min( index ); in getMinimumofAllDifferentYValues()
640 double fY_Max = getY_Max( index ); in getMinimumofAllDifferentYValues()
641 double fY_First = getY_First( index ); in getMinimumofAllDifferentYValues()
642 double fY_Last = getY_Last( index ); in getMinimumofAllDifferentYValues()
655 double fY = getYValue( index ); in getMinimumofAllDifferentYValues()
666 double VDataSeries::getMaximumofAllDifferentYValues( sal_Int32 index ) const in getMaximumofAllDifferentYValues()
675 double fY_Min = getY_Min( index ); in getMaximumofAllDifferentYValues()
676 double fY_Max = getY_Max( index ); in getMaximumofAllDifferentYValues()
677 double fY_First = getY_First( index ); in getMaximumofAllDifferentYValues()
678 double fY_Last = getY_Last( index ); in getMaximumofAllDifferentYValues()
691 double fY = getYValue( index ); in getMaximumofAllDifferentYValues()
764 Symbol* VDataSeries::getSymbolProperties( sal_Int32 index ) const in getSymbolProperties()
767 if( isAttributedDataPoint( index ) ) in getSymbolProperties()
769 adaptPointCache( index ); in getSymbolProperties()
771 …erties_AttributedPoint = getSymbolPropertiesFromPropertySet( this->getPropertiesOfPoint( index ) ); in getSymbolProperties()
814 uno::Reference< beans::XPropertySet > VDataSeries::getYErrorBarProperties( sal_Int32 index ) const in getYErrorBarProperties()
818 uno::Reference< beans::XPropertySet > xPointProp( this->getPropertiesOfPoint( index )); in getYErrorBarProperties()
824 bool VDataSeries::hasPointOwnColor( sal_Int32 index ) const in hasPointOwnColor()
826 if( !isAttributedDataPoint(index) ) in hasPointOwnColor()
831 …uno::Reference< beans::XPropertyState > xPointState( this->getPropertiesOfPoint(index), uno::UNO_Q… in hasPointOwnColor()
841 bool VDataSeries::isAttributedDataPoint( sal_Int32 index ) const in isAttributedDataPoint()
844 if( index>=m_nPointCount || m_nPointCount==0) in isAttributedDataPoint()
848 if(index==m_aAttributedDataPointIndexList[nN]) in isAttributedDataPoint()
863 uno::Reference< beans::XPropertySet > VDataSeries::getPropertiesOfPoint( sal_Int32 index ) const in getPropertiesOfPoint()
865 if( isAttributedDataPoint( index ) ) in getPropertiesOfPoint()
866 return m_xDataSeries->getDataPointByIndex(index); in getPropertiesOfPoint()
903 DataPointLabel* VDataSeries::getDataPointLabel( sal_Int32 index ) const in getDataPointLabel()
906 if( isAttributedDataPoint( index ) ) in getDataPointLabel()
908 adaptPointCache( index ); in getDataPointLabel()
910 …_apLabel_AttributedPoint = getDataPointLabelFromPropertySet( this->getPropertiesOfPoint( index ) ); in getDataPointLabel()
916 … m_apLabel_Series = getDataPointLabelFromPropertySet( this->getPropertiesOfPoint( index ) ); in getDataPointLabel()
927 DataPointLabel* VDataSeries::getDataPointLabelIfLabel( sal_Int32 index ) const in getDataPointLabelIfLabel()
929 DataPointLabel* pLabel = this->getDataPointLabel( index ); in getDataPointLabelIfLabel()
936 bool VDataSeries::getTextLabelMultiPropertyLists( sal_Int32 index in getTextLabelMultiPropertyLists() argument
943 if( isAttributedDataPoint( index ) ) in getTextLabelMultiPropertyLists()
945 adaptPointCache( index ); in getTextLabelMultiPropertyLists()
950 xTextProp.set( this->getPropertiesOfPoint( index )); in getTextLabelMultiPropertyLists()
965 xTextProp.set( this->getPropertiesOfPoint( index )); in getTextLabelMultiPropertyLists()