Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:__begin_

1683     const _E* __begin_;
1687 : __begin_(__b),
1700 constexpr initializer_list() : __begin_(nullptr), __size_(0) {}
1703 constexpr const _E* begin() const {return __begin_;}
1704 constexpr const _E* end() const {return __begin_ + __size_;}