Lines Matching refs:_E
1615 template <class _E>
1618 const _E* __begin_;
1621 constexpr initializer_list(const _E* __b, size_t __s)
1627 typedef _E value_type;
1628 typedef const _E& reference;
1629 typedef const _E& const_reference;
1632 typedef const _E* iterator;
1633 typedef const _E* const_iterator;
1638 constexpr const _E* begin() const {return __begin_;}
1639 constexpr const _E* end() const {return __begin_ + __size_;}