Searched refs:ConstHandleArrayIter (Results 1 – 3 of 3) sorted by relevance
31 template <typename T> using ConstHandleArrayIter = ArrayIter<T, const Handle<ObjectArray<T>>>; variable132 static inline ConstHandleArrayIter<T> cbegin(const Handle<ObjectArray<T>>& h_this)134 static inline ConstHandleArrayIter<T> cend(const Handle<ObjectArray<T>>& h_this)136 static inline IterationRange<ConstHandleArrayIter<T>> ConstIterate( in ConstIterate()
356 inline ConstHandleArrayIter<T> ObjectArray<T>::cbegin(const Handle<ObjectArray<T>>& h_this) { in cbegin()357 return ConstHandleArrayIter<T>(h_this, 0); in cbegin()360 inline ConstHandleArrayIter<T> ObjectArray<T>::cend(const Handle<ObjectArray<T>>& h_this) { in cend()361 return ConstHandleArrayIter<T>(h_this, h_this->GetLength()); in cend()
41 template<typename T> using ConstHandleArrayIter = ArrayIter<T, const Handle<ObjectArray<T>>>; variable80 ALWAYS_INLINE IterationRange<mirror::ConstHandleArrayIter<Type>> ConstIterate() const in ConstIterate()