Lines Matching refs:INLINE
37 INLINE(explicit List(int capacity,
41 INLINE(~List()) { DeleteData(data_); } in INLINE() function
50 INLINE(void* operator new(size_t size,
54 INLINE(void operator delete(void* p)) { in INLINE() function
59 INLINE(void operator delete(void* p, AllocationPolicy allocator)) { in INLINE() function
79 INLINE(bool is_empty() const) { return length_ == 0; } in INLINE() function
80 INLINE(int length() const) { return length_; } in INLINE() function
81 INLINE(int capacity() const) { return capacity_; } in INLINE() function
126 INLINE(T RemoveLast()) { return Remove(length_ - 1); } in INLINE() function
129 INLINE(void Allocate(int length,
134 INLINE(void Clear());
137 INLINE(void Rewind(int pos));
140 INLINE(void RewindBy(int count)) { Rewind(length_ - count); } in INLINE() function
143 INLINE(void Swap(List<T, AllocationPolicy>* list));
146 INLINE(void Trim(AllocationPolicy allocator = AllocationPolicy()));
168 INLINE(void Initialize(int capacity,
181 INLINE(T* NewData(int n, AllocationPolicy allocator)) { in INLINE() function
184 INLINE(void DeleteData(T* data)) { in INLINE() function