Searched defs:TVector (Results 1 – 1 of 1) sorted by relevance
| /device/generic/vulkan-cereal/third-party/angle/src/compiler/translator/ |
| D | Common.h | 71 TVector() : std::vector<T, pool_allocator<T>>() {} in TVector() function 72 TVector(const pool_allocator<T> &a) : std::vector<T, pool_allocator<T>>(a) {} in TVector() function 73 TVector(size_type i) : std::vector<T, pool_allocator<T>>(i) {} in TVector() function 74 TVector(size_type i, const T &value) : std::vector<T, pool_allocator<T>>(i, value) {} in TVector() function 76 TVector(InputIt first, InputIt last) : std::vector<T, pool_allocator<T>>(first, last) in TVector() function 78 TVector(std::initializer_list<T> init) : std::vector<T, pool_allocator<T>>(init) {} in TVector() function
|