Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:__begin_

1637     const _E* __begin_;
1641 : __begin_(__b),
1654 constexpr initializer_list() : __begin_(nullptr), __size_(0) {}
1657 constexpr const _E* begin() const {return __begin_;}
1658 constexpr const _E* end() const {return __begin_ + __size_;}