Lines Matching refs:_E
8 template <class _E>
11 const _E* __begin_;
14 initializer_list(const _E* __b, size_t __s)
20 typedef _E value_type;
21 typedef const _E& reference;
22 typedef const _E& const_reference;
25 typedef const _E* iterator;
26 typedef const _E* const_iterator;
31 const _E* begin() const {return __begin_;}
32 const _E* end() const {return __begin_ + __size_;}