Lines Matching refs:i_data
206 …void SAL_CALL DefaultGridDataModel::addRow( const Any& i_heading, const Sequence< Any >& i_data ) … in addRow() argument
208 insertRow( getRowCount(), i_heading, i_data ); in addRow()
212 …s( const Sequence< Any >& i_headings, const Sequence< Sequence< Any > >& i_data ) throw (IllegalAr… in addRows() argument
214 insertRows( getRowCount(), i_headings, i_data ); in addRows()
218 …rtRow( ::sal_Int32 i_index, const Any& i_heading, const Sequence< Any >& i_data ) throw (RuntimeEx… in insertRow() argument
226 impl_insertRow( i_index, i_heading, i_data ); in insertRow()
229 sal_Int32 const columnCount = i_data.getLength(); in insertRow()
241 …ex, const Sequence< Any>& i_headings, const Sequence< Sequence< Any > >& i_data ) throw (IllegalAr… in insertRows() argument
243 if ( i_headings.getLength() != i_data.getLength() ) in insertRows()
258 if ( i_data[row].getLength() > maxColCount ) in insertRows()
259 maxColCount = i_data[row].getLength(); in insertRows()
266 impl_insertRow( i_index + row, i_headings[row], i_data[row], maxColCount ); in insertRows()