Lines Matching refs:m_aRowLabels

85     , 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()
234 return m_aRowLabels[nRowIndex]; in getComplexRowLabel()
253 vector< uno::Any > aTemp( m_aRowLabels[nRowIndex] ); in swapRowWithNext()
254 m_aRowLabels[nRowIndex] = m_aRowLabels[nRowIndex + 1]; in swapRowWithNext()
255 m_aRowLabels[nRowIndex + 1] = aTemp; in swapRowWithNext()
387 if( nAfterIndex < static_cast< sal_Int32 >( m_aRowLabels.size())) in insertRow()
388 m_aRowLabels.insert( m_aRowLabels.begin() + nIndex, vector< uno::Any > (1)); in insertRow()
463 if( nAtIndex < static_cast< sal_Int32 >( m_aRowLabels.size())) in deleteRow()
464 m_aRowLabels.erase( m_aRowLabels.begin() + nAtIndex ); in deleteRow()
483 m_aRowLabels = rNewRowLabels; in setComplexRowLabels()
484 sal_Int32 nNewRowCount = static_cast< sal_Int32 >( m_aRowLabels.size() ); in setComplexRowLabels()
486 m_aRowLabels.resize( m_nRowCount ); in setComplexRowLabels()
493 return m_aRowLabels; in getComplexRowLabels()