Lines Matching refs:const_iterator
842 …using const_iterator = enumerable_thread_specific_iterator<internal_collection_type, const value_t…
846 using const_range_type = generic_range_type<const_iterator>;
909 const_iterator begin() const { return const_iterator(my_locals, 0); }
912 const_iterator end() const { return const_iterator(my_locals, my_locals.size()); }
1031 const_iterator ci = begin();
1065 using const_iterator = segmented_iterator<Container, const value_type>;
1067 …ttened2d( const Container &c, typename Container::const_iterator b, typename Container::const_iter…
1075 const_iterator begin() const { return const_iterator(*my_container) = my_begin; }
1076 const_iterator end() const { return const_iterator(*my_container) = my_end; }
1080 for(typename Container::const_iterator i = my_begin; i != my_end; ++i) {
1088 typename Container::const_iterator my_begin;
1089 typename Container::const_iterator my_end;
1093 …(const Container &c, const typename Container::const_iterator b, const typename Container::const_i…