Lines Matching refs:xLSeq

91     const Reference< chart2::data::XLabeledDataSequence > & xLSeq )  in lcl_getRole()
94 if( xLSeq.is()) in lcl_getRole()
95 aResult = lcl_getRole( xLSeq->getValues()); in lcl_getRole()
100 const Reference< chart2::data::XLabeledDataSequence > & xLSeq ) in lcl_getUIRoleName()
102 OUString aResult( lcl_getRole( xLSeq )); in lcl_getUIRoleName()
178 const Reference< chart2::data::XLabeledDataSequence > & xLSeq ) in lcl_getValuesRepresentationIndex()
181 if( xLSeq.is()) in lcl_getValuesRepresentationIndex()
183 Reference< chart2::data::XDataSequence > xSeq( xLSeq->getValues()); in lcl_getValuesRepresentationIndex()
195 … lcl_RepresentationsOfLSeqMatch( const Reference< chart2::data::XLabeledDataSequence > & xLSeq ) : in lcl_RepresentationsOfLSeqMatch()
196 m_aValuesRep( xLSeq.is() ? in lcl_RepresentationsOfLSeqMatch()
197 … (xLSeq->getValues().is() ? xLSeq->getValues()->getSourceRangeRepresentation() : OUString()) in lcl_RepresentationsOfLSeqMatch()
200 bool operator() ( const Reference< chart2::data::XLabeledDataSequence > & xLSeq ) in operator ()()
202 return (xLSeq.is() && in operator ()()
203 xLSeq->getValues().is() && in operator ()()
204 (xLSeq->getValues()->getSourceRangeRepresentation() == m_aValuesRep )); in operator ()()
212 lcl_RolesOfLSeqMatch( const Reference< chart2::data::XLabeledDataSequence > & xLSeq ) : in lcl_RolesOfLSeqMatch()
213 m_aRole( lcl_getRole( xLSeq )) in lcl_RolesOfLSeqMatch()
215 bool operator() ( const Reference< chart2::data::XLabeledDataSequence > & xLSeq ) in operator ()()
217 return lcl_getRole( xLSeq ).equals( m_aRole ); in operator ()()