------------------------------------------------------------------------------
| 484 | |
| 485 | //------------------------------------------------------------------------------ |
| 486 | vtkStringArray::ValueType* vtkStringArray::WritePointer(vtkIdType id, vtkIdType number) |
| 487 | { |
| 488 | vtkIdType newSize = id + number; |
| 489 | if (newSize > this->Size) |
| 490 | { |
| 491 | this->ResizeAndExtend(newSize); |
| 492 | } |
| 493 | if ((--newSize) > this->MaxId) |
| 494 | { |
| 495 | this->MaxId = newSize; |
| 496 | } |
| 497 | this->DataChanged(); |
| 498 | return this->Array + id; |
| 499 | } |
| 500 | |
| 501 | //------------------------------------------------------------------------------ |
| 502 | void vtkStringArray::InsertValue(vtkIdType id, ValueType f) |
nothing calls this directly
no test coverage detected