Home | History | Annotate | Download | only in CodeGenCXX

Lines Matching refs:_E

9   template <class _E>
12 const _E* __begin_;
14 const _E* __end_;
19 constexpr initializer_list(const _E* __b, size_t __s)
29 typedef _E value_type;
30 typedef const _E& reference;
31 typedef const _E& const_reference;
34 typedef const _E* iterator;
35 typedef const _E* const_iterator;
41 const _E* begin() const {return __begin_;}
42 const _E* end() const {return __end_;}
47 const _E* begin() const {return __begin_;}
48 const _E* end() const {return __begin_ + __size_;}