Home | History | Annotate | Download | only in bits

Lines Matching refs:__l

78         __unordered_set(_InputIterator __f, _InputIterator __l, 
83 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(),
88 __unordered_set(initializer_list<value_type> __l,
93 : _Base(__l.begin(), __l.end(), __n, __hf,
100 operator=(initializer_list<value_type> __l)
103 this->insert(__l.begin(), __l.end());
148 __unordered_multiset(_InputIterator __f, _InputIterator __l,
153 : _Base(__f, __l, __n, __hf, __detail::_Mod_range_hashing(),
158 __unordered_multiset(initializer_list<value_type> __l,
163 : _Base(__l.begin(), __l.end(), __n, __hf,
170 operator=(initializer_list<value_type> __l)
173 this->insert(__l.begin(), __l.end());
270 unordered_set(_InputIterator __f, _InputIterator __l,
275 : _Base(__f, __l, __n, __hf, __eql, __a)
278 unordered_set(initializer_list<value_type> __l,
283 : _Base(__l.begin(), __l.end(), __n, __hf, __eql, __a)
287 operator=(initializer_list<value_type> __l)
290 this->insert(__l.begin(), __l.end());
336 unordered_multiset(_InputIterator __f, _InputIterator __l,
341 : _Base(__f, __l, __n, __hf, __eql, __a)
344 unordered_multiset(initializer_list<value_type> __l,
349 : _Base(__l.begin(), __l.end(), __n, __hf, __eql, __a)
353 operator=(initializer_list<value_type> __l)
356 this->insert(__l.begin(), __l.end());