Lines Matching defs:begin
30 LIBC_INLINE constexpr FixedVector(iterator begin, iterator end)
32 LIBC_ASSERT(begin + CAPACITY >= end);
33 for (; begin != end; ++begin)
34 push_back(*begin);
38 LIBC_INLINE constexpr FixedVector(const_iterator begin, const_iterator end)
40 LIBC_ASSERT(begin + CAPACITY >= end);
41 for (; begin != end; ++begin)
42 push_back(*begin);
116 LIBC_INLINE constexpr iterator begin() { return store.begin(); }
119 LIBC_INLINE constexpr const_iterator begin() const { return store.begin(); }