Home
last modified time | relevance | path

Searched refs:__other (Results 1 – 9 of 9) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_iterator.h173 _Self& operator=(const _Self& __other) {
174 container = __other.container;
202 _Self& operator=(const _Self& __other) {
203 container = __other.container;
233 _Self& operator=(_Self const& __other) {
234 container = __other.container;
235 _M_iter = __other._M_iter;
D_unordered_set.h111 _Self& operator = (const _Self& __other) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
112 { _M_ht = __other._M_ht; return *this; } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
261 _Self& operator = (const _Self& __other) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
262 { _M_ht = __other._M_ht; return *this; } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
D_unordered_map.h117 _Self& operator = (const _Self& __other) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
118 { _M_ht = __other._M_ht; return *this; } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
285 _Self& operator = (const _Self& __other) in _STLP_CREATE_HASH_ITERATOR_TRAITS()
286 { _M_ht = __other._M_ht; return *this; } in _STLP_CREATE_HASH_ITERATOR_TRAITS()
D_deque.h114 _Deque_iterator_base(_Deque_iterator_base const& __other) in _Deque_iterator_base()
115 : _M_cur(__other._M_cur), _M_first(__other._M_first), in _Deque_iterator_base()
116 _M_last(__other._M_last), _M_node(__other._M_node) {} in _Deque_iterator_base()
D_alloc.h359 void _M_swap_workaround(allocator<_Tp>& __other) {} in _M_swap_workaround() argument
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dscoped_allocator208 const __scoped_allocator_storage<_OuterA2, _InnerAllocs...>& __other) _NOEXCEPT
209 : outer_allocator_type(__other.outer_allocator()),
210 __inner_(__other.inner_allocator()) {}
218 __scoped_allocator_storage<_OuterA2, _InnerAllocs...>&& __other) _NOEXCEPT
219 : outer_allocator_type(_VSTD::move(__other.outer_allocator())),
220 __inner_(_VSTD::move(__other.inner_allocator())) {}
287 const __scoped_allocator_storage<_OuterA2>& __other) _NOEXCEPT
288 : outer_allocator_type(__other.outer_allocator()) {}
296 __scoped_allocator_storage<_OuterA2>&& __other) _NOEXCEPT
297 : outer_allocator_type(_VSTD::move(__other.outer_allocator())) {}
[all …]
Dfuture2050 packaged_task(packaged_task&& __other) _NOEXCEPT
2051 : __f_(_VSTD::move(__other.__f_)), __p_(_VSTD::move(__other.__p_)) {}
2053 packaged_task& operator=(packaged_task&& __other) _NOEXCEPT
2055 __f_ = _VSTD::move(__other.__f_);
2056 __p_ = _VSTD::move(__other.__p_);
2060 void swap(packaged_task& __other) _NOEXCEPT
2062 __f_.swap(__other.__f_);
2063 __p_.swap(__other.__p_);
2181 packaged_task(packaged_task&& __other) _NOEXCEPT
2182 : __f_(_VSTD::move(__other.__f_)), __p_(_VSTD::move(__other.__p_)) {}
[all …]
D__locale145 locale::locale(const locale& __other, _Facet* __f)
147 __install_ctor(__other, __f, __f ? __f->id.__get() : 0);
152 locale::combine(const locale& __other) const
155 if (!_VSTD::has_facet<_Facet>(__other))
158 return locale(*this, &const_cast<_Facet&>(_VSTD::use_facet<_Facet>(__other)));
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
D_tools.h378 difference_type operator -(_Self const& __other) const
379 { return _M_ite - __other._M_ite; }
381 bool operator == (_Self const& __other) const
382 { return _M_ite == __other._M_ite; }
384 bool operator != (_Self const& __other) const
385 { return _M_ite != __other._M_ite; }