Home | History | Annotate | Download | only in debug

Lines Matching refs:__res

210 	  auto __res = _Base::emplace(std::forward<_Args>(__args)...);
211 return std::pair<iterator, bool>(iterator(__res.first, this),
212 __res.second);
229 std::pair<_Base_iterator, bool> __res = _Base::insert(__x);
230 return std::pair<iterator, bool>(iterator(__res.first, this),
231 __res.second);
241 std::pair<_Base_iterator, bool> __res
243 return std::pair<iterator, bool>(iterator(__res.first, this),
244 __res.second);
409 std::pair<_Base_iterator, _Base_iterator> __res =
411 return std::make_pair(iterator(__res.first, this),
412 iterator(__res.second, this));
418 std::pair<_Base_const_iterator, _Base_const_iterator> __res =
420 return std::make_pair(const_iterator(__res.first, this),
421 const_iterator(__res.second, this));