Home | History | Annotate | Download | only in stl

Lines Matching refs:__f

95   unordered_map(_InputIterator __f, _InputIterator __l,
100 { _M_ht.insert_unique(__f, __l); }
102 unordered_map(const value_type* __f, const value_type* __l,
107 { _M_ht.insert_unique(__f, __l); }
109 unordered_map(const_iterator __f, const_iterator __l,
114 { _M_ht.insert_unique(__f, __l); }
139 void insert(_InputIterator __f, _InputIterator __l)
141 void insert(const value_type* __f, const value_type* __l)
142 { _M_ht.insert_unique(__f,__l); }
143 void insert(const_iterator __f, const_iterator __l)
145 { _M_ht.insert_unique(__f, __l); }
172 void erase(const_iterator __f, const_iterator __l) { _M_ht.erase(__f, __l); }
263 unordered_multimap(_InputIterator __f, _InputIterator __l,
268 { _M_ht.insert_equal(__f, __l); }
270 unordered_multimap(const value_type* __f, const value_type* __l,
275 { _M_ht.insert_equal(__f, __l); }
277 unordered_multimap(const_iterator __f, const_iterator __l,
282 { _M_ht.insert_equal(__f, __l); }
307 void insert(_InputIterator __f, _InputIterator __l)
309 void insert(const value_type* __f, const value_type* __l)
310 { _M_ht.insert_equal(__f,__l); }
311 void insert(const_iterator __f, const_iterator __l)
313 { _M_ht.insert_equal(__f, __l); }
332 void erase(const_iterator __f, const_iterator __l) { _M_ht.erase(__f, __l); }