Home | History | Annotate | Download | only in include

Lines Matching full:__h

776         unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1));
780 __h.reset(__node_traits::allocate(__a, 1));
781 __node_traits::construct(__a, _VSTD::addressof(__h->__value_));
782 __h->__next_ = nullptr;
783 __p->__next_ = __h.release();
999 unique_ptr<__node, _Dp> __h(__node_traits::allocate(__a, 1), _Dp(__a, 1));
1000 __node_traits::construct(__a, _VSTD::addressof(__h->__value_),
1002 __h->__next_ = base::__before_begin()->__next_;
1003 base::__before_begin()->__next_ = __h.release();
1014 unique_ptr<__node, _Dp> __h(__node_traits::allocate(__a, 1), _Dp(__a, 1));
1015 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), _VSTD::move(__v));
1016 __h->__next_ = base::__before_begin()->__next_;
1017 base::__before_begin()->__next_ = __h.release();
1028 unique_ptr<__node, _Dp> __h(__node_traits::allocate(__a, 1), _Dp(__a, 1));
1029 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
1030 __h->__next_ = base::__before_begin()->__next_;
1031 base::__before_begin()->__next_ = __h.release();
1056 unique_ptr<__node, _Dp> __h(__node_traits::allocate(__a, 1), _Dp(__a, 1));
1057 __node_traits::construct(__a, _VSTD::addressof(__h->__value_),
1059 __h->__next_ = __r->__next_;
1060 __r->__next_ = __h.release();
1073 unique_ptr<__node, _Dp> __h(__node_traits::allocate(__a, 1), _Dp(__a, 1));
1074 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), _VSTD::move(__v));
1075 __h->__next_ = __r->__next_;
1076 __r->__next_ = __h.release();
1089 unique_ptr<__node, _Dp> __h(__node_traits::allocate(__a, 1), _Dp(__a, 1));
1090 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
1091 __h->__next_ = __r->__next_;
1092 __r->__next_ = __h.release();
1106 unique_ptr<__node, _Dp> __h(__node_traits::allocate(__a, 1), _Dp(__a, 1));
1107 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
1108 __node_pointer __first = __h.release();
1116 __h.reset(__node_traits::allocate(__a, 1));
1117 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
1118 __last->__next_ = __h.release();
1156 unique_ptr<__node, _Dp> __h(__node_traits::allocate(__a, 1), _Dp(__a, 1));
1157 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), *__f);
1158 __node_pointer __first = __h.release();
1166 __h.reset(__node_traits::allocate(__a, 1));
1167 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), *__f);
1168 __last->__next_ = __h.release();
1248 unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1));
1252 __h.reset(__node_traits::allocate(__a, 1));
1253 __node_traits::construct(__a, _VSTD::addressof(__h->__value_));
1254 __h->__next_ = nullptr;
1255 __ptr->__next_ = __h.release();
1280 unique_ptr<__node, _Dp> __h(nullptr, _Dp(__a, 1));
1284 __h.reset(__node_traits::allocate(__a, 1));
1285 __node_traits::construct(__a, _VSTD::addressof(__h->__value_), __v);
1286 __h->__next_ = nullptr;
1287 __ptr->__next_ = __h.release();