• Home
  • Raw
  • Download

Lines Matching refs:__b

877 template <bool __b>
879 __deque_base_common<__b>::__throw_length_error() const
886 template <bool __b>
888 __deque_base_common<__b>::__throw_out_of_range() const
1876 iterator __b = __base::begin();
1877 iterator __bm1 = _VSTD::prev(__b);
1878 if (__vt == pointer_traits<const_pointer>::pointer_to(*__b))
1880 __alloc_traits::construct(__a, _VSTD::addressof(*__bm1), _VSTD::move(*__b));
1884 __b = __move_and_check(_VSTD::next(__b), __b + __pos, __b, __vt);
1885 *__b = *__vt;
1938 iterator __b = __base::begin();
1939 iterator __bm1 = _VSTD::prev(__b);
1940 __alloc_traits::construct(__a, _VSTD::addressof(*__bm1), _VSTD::move(*__b));
1944 __b = _VSTD::move(_VSTD::next(__b), __b + __pos, __b);
1945 *__b = _VSTD::move(__v);
1997 iterator __b = __base::begin();
1998 iterator __bm1 = _VSTD::prev(__b);
1999 __alloc_traits::construct(__a, _VSTD::addressof(*__bm1), _VSTD::move(*__b));
2003 __b = _VSTD::move(_VSTD::next(__b), __b + __pos, __b);
2004 *__b = _VSTD::move(__tmp);
2701 iterator __b = __base::begin();
2702 difference_type __pos = __f - __b;
2703 iterator __p = __b + __pos;
2707 _VSTD::move_backward(__b, __p, _VSTD::next(__p));
2708 __alloc_traits::destroy(__a, _VSTD::addressof(*__b));
2737 iterator __b = __base::begin();
2738 difference_type __pos = __f - __b;
2739 iterator __p = __b + __pos;
2745 iterator __i = _VSTD::move_backward(__b, __p, __p + __n);
2746 for (; __b != __i; ++__b)
2747 __alloc_traits::destroy(__a, _VSTD::addressof(*__b));
2782 iterator __b = __base::begin();
2783 difference_type __pos = __f - __b;
2784 for (iterator __p = __b + __pos; __p != __e; ++__p)