Lines Matching refs:_E
9 template <class _E>
12 const _E* __begin_;
14 const _E* __end_;
19 constexpr initializer_list(const _E* __b, size_t __s) in initializer_list()
29 typedef _E value_type;
30 typedef const _E& reference;
31 typedef const _E& const_reference;
34 typedef const _E* iterator;
35 typedef const _E* const_iterator;
41 const _E* begin() const {return __begin_;} in begin()
42 const _E* end() const {return __end_;} in end()
47 const _E* begin() const {return __begin_;} in begin()
48 const _E* end() const {return __begin_ + __size_;} in end()