Lines Matching refs:_E
31 template <class _E>
34 const _E* __begin_;
37 initializer_list(const _E* __b, size_t __s)
43 typedef _E value_type;
44 typedef const _E& reference;
45 typedef const _E& const_reference;
48 typedef const _E* iterator;
49 typedef const _E* const_iterator;
54 const _E* begin() const {return __begin_;}
55 const _E* end() const {return __begin_ + __size_;}