Searched refs:ConstHandleArrayIter (Results 1 – 3 of 3) sorted by relevance
30 template <typename T> using ConstHandleArrayIter = ArrayIter<T, const Handle<ObjectArray<T>>>; variable129 static inline ConstHandleArrayIter<T> cbegin(const Handle<ObjectArray<T>>& h_this)131 static inline ConstHandleArrayIter<T> cend(const Handle<ObjectArray<T>>& h_this)133 static inline IterationRange<ConstHandleArrayIter<T>> ConstIterate( in ConstIterate()
343 inline ConstHandleArrayIter<T> ObjectArray<T>::cbegin(const Handle<ObjectArray<T>>& h_this) { in cbegin()344 return ConstHandleArrayIter<T>(h_this, 0); in cbegin()347 inline ConstHandleArrayIter<T> ObjectArray<T>::cend(const Handle<ObjectArray<T>>& h_this) { in cend()348 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()