Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:_E

1694   template <class _E>
1697 const _E* __begin_;
1700 constexpr initializer_list(const _E* __b, size_t __s)
1706 typedef _E value_type;
1707 typedef const _E& reference;
1708 typedef const _E& const_reference;
1711 typedef const _E* iterator;
1712 typedef const _E* const_iterator;
1717 constexpr const _E* begin() const {return __begin_;}
1718 constexpr const _E* end() const {return __begin_ + __size_;}