Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dobject_array.h31 template <typename T> using ConstHandleArrayIter = ArrayIter<T, const Handle<ObjectArray<T>>>; variable
132 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()
Dobject_array-inl.h356 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()
/art/runtime/
Dhandle.h41 template<typename T> using ConstHandleArrayIter = ArrayIter<T, const Handle<ObjectArray<T>>>; variable
80 ALWAYS_INLINE IterationRange<mirror::ConstHandleArrayIter<Type>> ConstIterate() const in ConstIterate()