Home
last modified time | relevance | path

Searched refs:VectorType (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
Dsmall_vector.h87 … using VectorType = std::vector<T, typename AllocatorConfig<Allocator, T, use_allocator>::Adapter>; variable
90 using value_type = typename VectorType::value_type;
91 using reference = typename VectorType::reference;
92 using const_reference = typename VectorType::const_reference;
93 using pointer = typename VectorType::pointer;
94 using const_pointer = typename VectorType::const_pointer;
95 using difference_type = typename VectorType::difference_type;
247 new (&vector_) VectorType(other.vector_); in SmallVector()
263 new (&vector_) VectorType(std::move(other.vector_)); in SmallVector()
292 new (&vector_) VectorType(other.vector_);
[all …]
Dbit_vector.h255 using VectorType = std::conditional_t<FixedSize, Span<WordType>, variable
562 VectorType storage_;