Lines Matching refs:_E
12 template <class _E>
15 const _E* __begin_;
18 initializer_list(const _E* __b, size_t __s)
24 typedef _E value_type;
25 typedef const _E& reference;
26 typedef const _E& const_reference;
29 typedef const _E* iterator;
30 typedef const _E* const_iterator;
35 const _E* begin() const {return __begin_;}
36 const _E* end() const {return __begin_ + __size_;}