Home
last modified time | relevance | path

Searched refs:const_reverse_iterator (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/libpandabase/utils/
Dring_buffer.h133 using const_reverse_iterator = std::reverse_iterator<const_iterator>; variable
263 … constexpr const_reverse_iterator rbegin() const noexcept // NOLINT(readability-identifier-naming) in rbegin()
279 …constexpr const_reverse_iterator crbegin() const noexcept // NOLINT(readability-identifier-naming) in crbegin()
315 constexpr const_reverse_iterator rend() const noexcept // NOLINT(readability-identifier-naming) in rend()
331 … constexpr const_reverse_iterator crend() const noexcept // NOLINT(readability-identifier-naming) in crend()
Dsmall_vector.h204 using const_reverse_iterator = Iterator<const T, true>; variable
370 return const_reverse_iterator(&operator[](size() - 1)); in rbegin()
378 return const_reverse_iterator(&operator[](size() - 1)); in crbegin()
382 return const_reverse_iterator(&operator[](0) - 1); in rend()
390 return const_reverse_iterator(&operator[](0) - 1); in crend()
/arkcompiler/ets_frontend/es2panda/compiler/debugger/
DdebuginfoDumper.cpp50 typename std::vector<T>::const_reverse_iterator elem; in WrapArray()