Lines Matching refs:_E
10 template <class _E>
13 const _E* __begin_;
16 initializer_list(const _E* __b, size_t __s)
22 typedef _E value_type;
23 typedef const _E& reference;
24 typedef const _E& const_reference;
27 typedef const _E* iterator;
28 typedef const _E* const_iterator;
33 const _E* begin() const {return __begin_;}
34 const _E* end() const {return __begin_ + __size_;}