Lines Matching defs:SmallVector
18 // Minimal SmallVector implementation. Uses inline storage first, switches to
21 class SmallVector {
30 explicit SmallVector(const Allocator& allocator = Allocator())
32 explicit SmallVector(size_t size, const Allocator& allocator = Allocator())
36 SmallVector(const SmallVector& other,
41 SmallVector(SmallVector&& other,
46 SmallVector(std::initializer_list<T> init,
53 ~SmallVector() {
57 SmallVector& operator=(const SmallVector& other) V8_NOEXCEPT {
71 SmallVector& operator=(SmallVector&& other) V8_NOEXCEPT {
169 FATAL("Fatal process out of memory: base::SmallVector::Grow");