Lines Matching refs:m_aFields
120 ,m_aSeekRow(m_aFields.end()) in DBG_NAME()
149 m_aSeekRow = m_aFields.end(); in SeekRow()
153 m_aSeekRow = m_aFields.begin() + nRow; in SeekRow()
154 OSL_ENSURE(m_aSeekRow <= m_aFields.end(), "IndexFieldsControl::SeekRow: invalid row!"); in SeekRow()
195 m_aFields = _rFields; in initializeFrom()
196 m_aSeekRow = m_aFields.end(); in initializeFrom()
202 RowInserted(GetRowCount(), m_aFields.size(), sal_False); in initializeFrom()
215 _rFields.resize(m_aFields.size()); in commitTo()
216 ConstIndexFieldsIterator aSource = m_aFields.begin(); in commitTo()
217 ConstIndexFieldsIterator aSourceEnd = m_aFields.end(); in commitTo()
329 _rPos = m_aFields.end(); in implGetFieldDesc()
330 if ((_nRow < 0) || (_nRow >= (sal_Int32)m_aFields.size())) in implGetFieldDesc()
332 _rPos = m_aFields.begin() + _nRow; in implGetFieldDesc()
361 m_aFields.push_back(aNewField); in SaveModified()
368 …OSL_ENSURE(nRow < (sal_Int32)m_aFields.size(), "IndexFieldsControl::SaveModified: invalid current … in SaveModified()
372 IndexFieldsIterator aPos = m_aFields.begin() + nRow; in SaveModified()
401 OIndexField& rCurrentField = m_aFields[GetCurRow()]; in SaveModified()
449 …OSL_ENSURE(((sal_Int32)(m_aFields.size() + 1)) == rowCount, "IndexFieldsControl::OnListEntrySelect… in IMPL_LINK()
454 m_aFields.push_back(OIndexField()); in IMPL_LINK()
461 m_aFields.erase(m_aFields.end() - 1); in IMPL_LINK()
474 ConstIndexFieldsIterator aRow = m_aFields.end(); in GetCellText()
477 aRow = m_aFields.begin() + _nRow; in GetCellText()
478 OSL_ENSURE(aRow <= m_aFields.end(), "IndexFieldsControl::SeekRow: invalid row!"); in GetCellText()
485 if (_rRow < m_aFields.end()) in GetRowCellText()