Lines Matching refs:Args
195 template <typename... Args>
196 void emplace( Args&&... args ) { in emplace()
197 internal_push(std::forward<Args>(args)...); in emplace()
243 template <typename... Args>
244 void internal_push( Args&&... args ) { in internal_push()
246 …esentation->choose(k).push(k, *my_queue_representation, my_allocator, std::forward<Args>(args)...); in internal_push()
485 template <typename... Args>
486 void emplace( Args&&... args ) { in emplace()
487 internal_push(std::forward<Args>(args)...); in emplace()
490 template <typename... Args>
491 bool try_emplace( Args&&... args ) { in try_emplace()
492 return internal_push_if_not_full(std::forward<Args>(args)...); in try_emplace()
556 template <typename... Args>
557 void internal_push( Args&&... args ) { in internal_push()
579 …->choose(ticket).push(ticket, *my_queue_representation, my_allocator, std::forward<Args>(args)...); in internal_push()
583 template <typename... Args>
584 bool internal_push_if_not_full( Args&&... args ) { in internal_push_if_not_full()
595 …->choose(ticket).push(ticket, *my_queue_representation, my_allocator, std::forward<Args>(args)...); in internal_push_if_not_full()