Lines Matching refs:_E
7 template <class _E>
10 const _E* __begin_;
11 const _E* __end_;
13 initializer_list(const _E* __b, const _E* __e) in initializer_list()
19 typedef _E value_type;
20 typedef const _E& reference;
21 typedef const _E& const_reference;
24 typedef const _E* iterator;
25 typedef const _E* const_iterator;
30 const _E* begin() const {return __begin_;} in begin()
31 const _E* end() const {return __end_;} in end()