Lines Matching refs:P
128 template<typename P>
129 typename std::enable_if<std::is_constructible<value_type, P&&>::value,
130 std::pair<iterator, bool>>::type insert( P&& value ) { in insert()
131 return this->emplace(std::forward<P>(value)); in insert()
134 template<typename P>
135 typename std::enable_if<std::is_constructible<value_type, P&&>::value,
136 iterator>::type insert( const_iterator hint, P&& value ) { in insert()
137 return this->emplace_hint(hint, std::forward<P>(value)); in insert()
289 template <typename P>
290 typename std::enable_if<std::is_constructible<value_type, P&&>::value,
291 std::pair<iterator, bool>>::type insert( P&& value ) { in insert()
292 return this->emplace(std::forward<P>(value)); in insert()
295 template<typename P>
296 typename std::enable_if<std::is_constructible<value_type, P&&>::value,
297 iterator>::type insert( const_iterator hint, P&& value ) { in insert()
298 return this->emplace_hint(hint, std::forward<P&&>(value)); in insert()