Lines Matching refs:LinearStdAllocator
156 class LinearStdAllocator {
161 explicit LinearStdAllocator(LinearAllocator& allocator) : linearAllocator(allocator) {} in LinearStdAllocator() function
162 LinearStdAllocator(const LinearStdAllocator& other) : linearAllocator(other.linearAllocator) {} in LinearStdAllocator() function
163 ~LinearStdAllocator() {} in ~LinearStdAllocator()
168 typedef LinearStdAllocator<U> other;
172 LinearStdAllocator(const LinearStdAllocator<U>& other) // NOLINT(google-explicit-constructor) in LinearStdAllocator() function
190 bool operator==(const LinearStdAllocator<T1>&, const LinearStdAllocator<T2>&) {
194 bool operator!=(const LinearStdAllocator<T1>&, const LinearStdAllocator<T2>&) {
199 class LsaVector : public std::vector<T, LinearStdAllocator<T>> {
201 explicit LsaVector(const LinearStdAllocator<T>& allocator) in LsaVector()
202 : std::vector<T, LinearStdAllocator<T>>(allocator) {} in LsaVector()