Lines Matching refs:begin
104 // begin implementation defined
140 iterator begin() { return vec_.begin(); }
143 const_iterator begin() const { return vec_.begin(); }
377 iterator begin() { return base_type::begin(); }
380 const_iterator begin() const { return base_type::begin(); }
383 const_iterator cbegin() const { return base_type::begin(); }
388 { return bind( c.begin(), c.end() ); }
392 { return bind( c.begin(), c.end() ); }
396 { return bind( first, last, this->begin() ); }
405 { return operator()( c.begin(), c.end() ); }
409 { return operator()( c.begin(), c.end() ); }
413 { return operator()( first, last, this->begin() ); }
464 iterator begin()
465 { return iterator( (*vec_).begin().it_, ptr_ ); }
474 const_iterator begin() const
475 { return const_iterator( (*vec_).begin().it_, ptr_ ); }
493 { return bind( c.begin(), c.end() ); }
497 { return bind( c.begin(), c.end() ); }
501 { return bind( first, last, this->begin() ); }
515 { return operator()( c.begin(), c.end() ); }
519 { return operator()( c.begin(), c.end() ); }
523 { return operator()( first, last, this->begin() ); }
684 for( const_iterator it=begin(); it != end(); ++it )