Lines Matching defs:end
77 // Returns a MapIterator referring to the past-the-end element in the map
78 Iterator end();
79 ConstIterator end() const;
121 return (it != mMap.end());
129 ASSERT((it != mMap.end()), "Key not found: " + key_);
182 for(it = map_->begin(); it != map_->end(); it++)
201 template<class T> typename Map<T>::Iterator Map<T>::end()
203 return mMap.end();
206 template<class T> typename Map<T>::ConstIterator Map<T>::end() const
208 return mMap.end();
214 for(it = map_.begin(); it != map_.end(); it++)
231 for(typename Map<T*>::Iterator it = map_->begin(); it != map_->end(); ++it)
252 for(typename Map<T*>::ConstIterator it = map_->begin(); it != map_->end(); ++it)