Lines Matching refs:nInsertIndex
310 void ScPivotFieldWindow::InsertField( size_t nInsertIndex, const ScPivotFuncData& rFuncData ) in InsertField() argument
312 if( (meFieldType != PIVOTFIELDTYPE_SELECT) && (nInsertIndex <= maFields.size()) ) in InsertField()
318 MoveField( nFieldIndex, nInsertIndex ); in InsertField()
326 InsertFieldUnchecked( nInsertIndex, aField ); in InsertField()
328 MoveSelection( nInsertIndex ); in InsertField()
350 bool ScPivotFieldWindow::MoveField( size_t nFieldIndex, size_t nInsertIndex ) in MoveField() argument
357 if( nFieldIndex < nInsertIndex ) in MoveField()
358 --nInsertIndex; in MoveField()
360 …= PIVOTFIELDTYPE_SELECT) && (nFieldIndex != nInsertIndex) && (nFieldIndex < maFields.size()) && (n… in MoveField()
365 InsertFieldUnchecked( nInsertIndex, aField ); in MoveField()
367 MoveSelection( nInsertIndex ); in MoveField()
394 bool ScPivotFieldWindow::MoveSelectedField( size_t nInsertIndex ) in MoveSelectedField() argument
396 return MoveField( mnSelectIndex, nInsertIndex ); in MoveSelectedField()
750 void ScPivotFieldWindow::InsertFieldUnchecked( size_t nInsertIndex, const ScPivotWindowField& rFiel… in InsertFieldUnchecked() argument
752 maFields.insert( maFields.begin() + nInsertIndex, rField ); in InsertFieldUnchecked()
755 xAcc->AddField( static_cast< sal_Int32 >( nInsertIndex ) ); in InsertFieldUnchecked()