Lines Matching refs:sal_Int32

64     sal_Int32 m_nCounter;
65 const sal_Int32 m_nStubStartIndex;
66 const sal_Int32 m_nWildcardLength;
91 const sal_Int32 nRowCount = 4; in createDefaultData()
92 const sal_Int32 nColumnCount = 3; in createDefaultData()
96 const sal_Int32 nSize = nColumnCount * nRowCount; in createDefaultData()
108 for( sal_Int32 i=0; i<nSize; ++i ) in createDefaultData()
138 for( sal_Int32 nRow=0; nRow<m_nRowCount; ++nRow ) in setData()
141 const sal_Int32 nMax = ::std::min( rDataInRows[nRow].getLength(), m_nColumnCount ); in setData()
142 for( sal_Int32 nCol=0; nCol < nMax; ++nCol ) in setData()
154 for( sal_Int32 i=0; i<m_nRowCount; ++i ) in getData()
161 Sequence< double > InternalData::getColumnValues( sal_Int32 nColumnIndex ) const in getColumnValues()
168 Sequence< double > InternalData::getRowValues( sal_Int32 nRowIndex ) const in getRowValues()
176 void InternalData::setColumnValues( sal_Int32 nColumnIndex, const vector< double > & rNewData ) in setColumnValues()
188 void InternalData::setRowValues( sal_Int32 nRowIndex, const vector< double > & rNewData ) in setRowValues()
200 void InternalData::setComplexColumnLabel( sal_Int32 nColumnIndex, const vector< uno::Any >& rComple… in setComplexColumnLabel()
204 if( nColumnIndex >= static_cast< sal_Int32 >( m_aColumnLabels.size() ) ) in setComplexColumnLabel()
212 void InternalData::setComplexRowLabel( sal_Int32 nRowIndex, const vector< uno::Any >& rComplexLabel… in setComplexRowLabel()
216 if( nRowIndex >= static_cast< sal_Int32 >( m_aRowLabels.size() ) ) in setComplexRowLabel()
224 vector< uno::Any > InternalData::getComplexColumnLabel( sal_Int32 nColumnIndex ) const in getComplexColumnLabel()
226 if( nColumnIndex < static_cast< sal_Int32 >( m_aColumnLabels.size() ) ) in getComplexColumnLabel()
231 vector< uno::Any > InternalData::getComplexRowLabel( sal_Int32 nRowIndex ) const in getComplexRowLabel()
233 if( nRowIndex < static_cast< sal_Int32 >( m_aRowLabels.size() ) ) in getComplexRowLabel()
239 void InternalData::swapRowWithNext( sal_Int32 nRowIndex ) in swapRowWithNext()
243 const sal_Int32 nMax = m_nColumnCount; in swapRowWithNext()
244 for( sal_Int32 nColIdx=0; nColIdx<nMax; ++nColIdx ) in swapRowWithNext()
259 void InternalData::swapColumnWithNext( sal_Int32 nColumnIndex ) in swapColumnWithNext()
263 const sal_Int32 nMax = m_nRowCount; in swapColumnWithNext()
264 for( sal_Int32 nRowIdx=0; nRowIdx<nMax; ++nRowIdx ) in swapColumnWithNext()
279 bool InternalData::enlargeData( sal_Int32 nColumnCount, sal_Int32 nRowCount ) in enlargeData()
281 sal_Int32 nNewColumnCount( ::std::max<sal_Int32>( m_nColumnCount, nColumnCount ) ); in enlargeData()
282 sal_Int32 nNewRowCount( ::std::max<sal_Int32>( m_nRowCount, nRowCount ) ); in enlargeData()
283 sal_Int32 nNewSize( nNewColumnCount*nNewRowCount ); in enlargeData()
306 void InternalData::insertColumn( sal_Int32 nAfterIndex ) in insertColumn()
312 sal_Int32 nNewColumnCount = m_nColumnCount + 1; in insertColumn()
313 sal_Int32 nNewSize( nNewColumnCount * m_nRowCount ); in insertColumn()
335 if( nAfterIndex < static_cast< sal_Int32 >( m_aColumnLabels.size())) in insertColumn()
343 sal_Int32 InternalData::appendColumn() in appendColumn()
349 sal_Int32 InternalData::appendRow() in appendRow()
355 void InternalData::insertRow( sal_Int32 nAfterIndex ) in insertRow()
361 sal_Int32 nNewRowCount = m_nRowCount + 1; in insertRow()
362 sal_Int32 nNewSize( m_nColumnCount * nNewRowCount ); in insertRow()
369 sal_Int32 nIndex = nAfterIndex + 1; in insertRow()
376 sal_Int32 nRemainingCount = m_nColumnCount * (m_nRowCount - nIndex); in insertRow()
387 if( nAfterIndex < static_cast< sal_Int32 >( m_aRowLabels.size())) in insertRow()
395 void InternalData::deleteColumn( sal_Int32 nAtIndex ) in deleteColumn()
400 sal_Int32 nNewColumnCount = m_nColumnCount - 1; in deleteColumn()
401 sal_Int32 nNewSize( nNewColumnCount * m_nRowCount ); in deleteColumn()
423 if( nAtIndex < static_cast< sal_Int32 >( m_aColumnLabels.size())) in deleteColumn()
431 void InternalData::deleteRow( sal_Int32 nAtIndex ) in deleteRow()
436 sal_Int32 nNewRowCount = m_nRowCount - 1; in deleteRow()
437 sal_Int32 nNewSize( m_nColumnCount * nNewRowCount ); in deleteRow()
444 sal_Int32 nIndex = nAtIndex; in deleteRow()
452 sal_Int32 nRemainingCount = m_nColumnCount * (nNewRowCount - nIndex); in deleteRow()
463 if( nAtIndex < static_cast< sal_Int32 >( m_aRowLabels.size())) in deleteRow()
471 sal_Int32 InternalData::getRowCount() const in getRowCount()
476 sal_Int32 InternalData::getColumnCount() const in getColumnCount()
484 sal_Int32 nNewRowCount = static_cast< sal_Int32 >( m_aRowLabels.size() ); in setComplexRowLabels()
499 sal_Int32 nNewColumnCount = static_cast< sal_Int32 >( m_aColumnLabels.size() ); in setComplexColumnLabels()
516 for( sal_Int32 i=0; i<m_nRowCount; ++i ) in traceData()
519 for( sal_Int32 j=0; j<m_nColumnCount; ++j ) in traceData()