Lines Matching refs:end
80 // Returns a pointer past the end of the data in the vector.
81 constexpr T* end() const { return start_ + length_; }
131 return std::equal(begin(), end(), other.begin(), other.end());
187 constexpr T* end() const { return start() + size(); }
221 // {Iterator} is the common type of {std::begin} and {std::end} called on a
225 decltype(std::end(std::declval<const U&>()))>::type>
228 Iterator end = std::end(collection);
231 OwnedVector<non_const_t>::NewForOverwrite(std::distance(begin, end));
232 std::copy(begin, end, vec.start());