Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:__begin_

1618     const _E* __begin_;
1622 : __begin_(__b),
1635 constexpr initializer_list() : __begin_(nullptr), __size_(0) {}
1638 constexpr const _E* begin() const {return __begin_;}
1639 constexpr const _E* end() const {return __begin_ + __size_;}