Home | History | Annotate | Download | only in drs

Lines Matching refs:_E

55   template <class _E>
58 const _E* __begin_;
61 initializer_list(const _E* __b, size_t __s)
65 typedef _E value_type;
66 typedef const _E& reference;
67 typedef const _E& const_reference;
70 typedef const _E* iterator;
71 typedef const _E* const_iterator;
76 const _E* begin() const {return __begin_;}
77 const _E* end() const {return __begin_ + __size_;}