reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/SmallVector.h
  345     if (N < this->size()) {
  346       this->destroy_range(this->begin()+N, this->end());
  347       this->set_size(N);
  348     } else if (N > this->size()) {
  349       if (this->capacity() < N)
  350         this->grow(N);
  351       for (auto I = this->end(), E = this->begin() + N; I != E; ++I)
  353       this->set_size(N);