Home | History | Annotate | Download | only in bits

Lines Matching refs:__il

529        *  @param  __il  An initializer_list of value_type.
533 * in the initializer_list @a __il. This is linear in __il.size().
535 forward_list(std::initializer_list<_Tp> __il,
538 { _M_initialize_dispatch(__il.begin(), __il.end(), __false_type()); }
578 * @param __il An initializer_list of value_type.
581 * elements in the initializer_list @a __il. This is linear in
582 * __il.size().
585 operator=(std::initializer_list<_Tp> __il)
587 assign(__il);
630 * @param __il An initializer_list of value_type.
633 * elements in the initializer_list @a __il. This is linear in
637 assign(std::initializer_list<_Tp> __il)
640 insert_after(cbefore_begin(), __il);
908 * @param __il An initializer_list of value_type.
910 * or @a __pos if @a __il is empty.
913 * initializer_list @a __il into the %forward_list before the location
920 insert_after(const_iterator __pos, std::initializer_list<_Tp> __il)
921 { return insert_after(__pos, __il.begin(), __il.end()); }