Home
last modified time | relevance | path

Searched refs:cbegin (Results 1 – 5 of 5) sorted by relevance

/art/runtime/base/
Ddchecked_vector.h105 using Base::cbegin;
153 DCHECK(cbegin() <= position && position <= cend()); in insert()
157 DCHECK(cbegin() <= position && position <= cend()); in insert()
162 DCHECK(cbegin() <= position && position <= cend()); in insert()
166 DCHECK(cbegin() <= position && position <= cend()); in insert()
170 DCHECK(cbegin() <= position && position <= cend()); in insert()
176 DCHECK(cbegin() <= position && position < cend()); in erase()
180 DCHECK(cbegin() <= first && first <= cend()); in erase()
188 DCHECK(cbegin() <= position && position <= cend()); in emplace()
Diteration_range.h39 iterator cbegin() const { return first_; } in cbegin() function
/art/compiler/utils/
Darray_ref.h118 const_iterator cbegin() const { return array_; } in cbegin() function
127 const_reverse_iterator crend() const { return const_reverse_iterator(cbegin()); } in crend()
Dintrusive_forward_list_test.cc53 IntrusiveForwardList<IFLTestValue>::const_iterator cbegin = ifl.cbegin(); in TEST() local
55 ASSERT_TRUE(converted_begin == cbegin); in TEST()
60 ASSERT_TRUE(ifl.begin() == ifl.cbegin()); in TEST()
61 ASSERT_FALSE(ifl.begin() != ifl.cbegin()); in TEST()
Dintrusive_forward_list.h160 const_iterator cbegin() const { return const_iterator(first_.next_hook); } in cbegin() function