Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dobject_array.h30 template <typename T> using ConstHandleArrayIter = ArrayIter<T, const Handle<ObjectArray<T>>>; variable
129 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()
Dobject_array-inl.h343 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()
/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()