Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:_E

7   template <class _E>
10 const _E* __begin_;
13 initializer_list(const _E* __b, size_t __s)
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_;}
31 const _E* end() const {return __begin_ + __size_;}