Home
last modified time | relevance | path

Searched refs:m_aRowLabels (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/chart2/source/tools/
H A DInternalData.cxx85 , m_aRowLabels( 0 ) in InternalData()
111 m_aRowLabels.clear(); in createDefaultData()
112 m_aRowLabels.reserve( m_nRowCount ); in createDefaultData()
113 generate_n( back_inserter( m_aRowLabels ), m_nRowCount, in createDefaultData()
127 if( m_aRowLabels.size() != static_cast< sal_uInt32 >( m_nRowCount )) in setData()
128 m_aRowLabels.resize( m_nRowCount ); in setData()
216 if( nRowIndex >= static_cast< sal_Int32 >( m_aRowLabels.size() ) ) in setComplexRowLabel()
218 m_aRowLabels.resize(nRowIndex+1); in setComplexRowLabel()
221 m_aRowLabels[nRowIndex] = rComplexLabel; in setComplexRowLabel()
233 if( nRowIndex < static_cast< sal_Int32 >( m_aRowLabels.size() ) ) in getComplexRowLabel()
[all …]
/AOO41X/main/chart2/source/inc/
H A DInternalData.hxx99 tVecVecAny m_aRowLabels;//outer index is row index, inner index is category level member in chart::InternalData