HomeSort by relevance Sort by last modified time
    Searched refs:__x (Results 401 - 425 of 1501) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_list.h 84 swap(_List_node_base& __x, _List_node_base& __y) _GLIBCXX_USE_NOEXCEPT;
141 _List_iterator(__detail::_List_node_base* __x)
142 : _M_node(__x) { }
184 operator==(const _Self& __x) const
185 { return _M_node == __x._M_node; }
188 operator!=(const _Self& __x) const
189 { return _M_node != __x._M_node; }
217 _List_const_iterator(const __detail::_List_node_base* __x)
218 : _M_node(__x) { }
220 _List_const_iterator(const iterator& __x)
956 { this->_M_insert(begin(), __x); } local
997 { this->_M_insert(end(), __x); } local
1457 { _M_fill_initialize(static_cast<size_type>(__n), __x); } local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_list.h 83 swap(_List_node_base& __x, _List_node_base& __y) _GLIBCXX_USE_NOEXCEPT;
140 _List_iterator(__detail::_List_node_base* __x)
141 : _M_node(__x) { }
183 operator==(const _Self& __x) const
184 { return _M_node == __x._M_node; }
187 operator!=(const _Self& __x) const
188 { return _M_node != __x._M_node; }
216 _List_const_iterator(const __detail::_List_node_base* __x)
217 : _M_node(__x) { }
219 _List_const_iterator(const iterator& __x)
975 { this->_M_insert(begin(), __x); } local
1016 { this->_M_insert(end(), __x); } local
1481 { _M_fill_initialize(static_cast<size_type>(__n), __x); } local
    [all...]
stl_tree.h 102 _S_minimum(_Base_ptr __x)
104 while (__x->_M_left != 0) __x = __x->_M_left;
105 return __x;
109 _S_minimum(_Const_Base_ptr __x)
111 while (__x->_M_left != 0) __x = __x->_M_left;
112 return __x;
1066 _Link_type __x = _M_begin(); local
1202 _Link_type __x = _M_begin(); local
1233 _Const_Link_type __x = _M_begin(); local
1315 _Link_type __x = _M_begin(); local
1347 _Link_type __x = _M_begin(); local
1600 _Link_type __x = _M_begin(); local
1836 _Const_Link_type __x = static_cast<_Const_Link_type>(__it._M_node); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_list.h 83 swap(_List_node_base& __x, _List_node_base& __y) throw ()
85 std::_List_node_base::swap(reinterpret_cast<std::_List_node_base &>(__x),
159 _List_iterator(__detail::_List_node_base* __x)
160 : _M_node(__x) { }
202 operator==(const _Self& __x) const
203 { return _M_node == __x._M_node; }
206 operator!=(const _Self& __x) const
207 { return _M_node != __x._M_node; }
235 _List_const_iterator(const __detail::_List_node_base* __x)
236 : _M_node(__x) { }
967 { this->_M_insert(begin(), __x); } local
1008 { this->_M_insert(end(), __x); } local
1467 { _M_fill_initialize(static_cast<size_type>(__n), __x); } local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_list.h 83 swap(_List_node_base& __x, _List_node_base& __y) throw ()
85 std::_List_node_base::swap(reinterpret_cast<std::_List_node_base &>(__x),
159 _List_iterator(__detail::_List_node_base* __x)
160 : _M_node(__x) { }
202 operator==(const _Self& __x) const
203 { return _M_node == __x._M_node; }
206 operator!=(const _Self& __x) const
207 { return _M_node != __x._M_node; }
235 _List_const_iterator(const __detail::_List_node_base* __x)
236 : _M_node(__x) { }
967 { this->_M_insert(begin(), __x); } local
1008 { this->_M_insert(end(), __x); } local
1467 { _M_fill_initialize(static_cast<size_type>(__n), __x); } local
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_list.h 77 swap(_List_node_base& __x, _List_node_base& __y);
128 _List_iterator(_List_node_base* __x)
129 : _M_node(__x) { }
171 operator==(const _Self& __x) const
172 { return _M_node == __x._M_node; }
175 operator!=(const _Self& __x) const
176 { return _M_node != __x._M_node; }
204 _List_const_iterator(const _List_node_base* __x)
205 : _M_node(__x) { }
207 _List_const_iterator(const iterator& __x)
879 { this->_M_insert(begin(), __x); } local
920 { this->_M_insert(end(), __x); } local
1376 { _M_fill_initialize(static_cast<size_type>(__n), __x); } local
    [all...]
  /external/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/debug/
_list.h 95 explicit list(size_type __n, const _Tp& __x = _Tp(),
97 list(size_type __n, const _Tp& __x,
100 : _M_non_dbg_impl(__n, __x, __a), _M_iter_list(&_M_non_dbg_impl) {}
148 list(const _Self& __x) :
149 _ConstructCheck(__x),
150 _M_non_dbg_impl(__x._M_non_dbg_impl) , _M_iter_list(&_M_non_dbg_impl) {}
152 _Self& operator=(const _Self& __x) {
153 if (this != &__x) {
156 _M_non_dbg_impl = __x._M_non_dbg_impl;
197 void swap(_Self& __x) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_list.h 82 swap(_List_node_base& __x, _List_node_base& __y) throw ();
139 _List_iterator(__detail::_List_node_base* __x)
140 : _M_node(__x) { }
182 operator==(const _Self& __x) const
183 { return _M_node == __x._M_node; }
186 operator!=(const _Self& __x) const
187 { return _M_node != __x._M_node; }
215 _List_const_iterator(const __detail::_List_node_base* __x)
216 : _M_node(__x) { }
218 _List_const_iterator(const iterator& __x)
947 { this->_M_insert(begin(), __x); } local
988 { this->_M_insert(end(), __x); } local
1447 { _M_fill_initialize(static_cast<size_type>(__n), __x); } local
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_list.h 82 swap(_List_node_base& __x, _List_node_base& __y) throw ();
139 _List_iterator(__detail::_List_node_base* __x)
140 : _M_node(__x) { }
182 operator==(const _Self& __x) const
183 { return _M_node == __x._M_node; }
186 operator!=(const _Self& __x) const
187 { return _M_node != __x._M_node; }
215 _List_const_iterator(const __detail::_List_node_base* __x)
216 : _M_node(__x) { }
218 _List_const_iterator(const iterator& __x)
947 { this->_M_insert(begin(), __x); } local
988 { this->_M_insert(end(), __x); } local
1447 { _M_fill_initialize(static_cast<size_type>(__n), __x); } local
    [all...]
  /external/stlport/stlport/stl/
_set.h 134 set(const _Self& __x) : _M_t(__x._M_t) {}
141 _Self& operator=(const _Self& __x) {
142 _M_t = __x._M_t;
162 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
164 void _M_swap_workaround(_Self& __x) { swap(__x); }
168 pair<iterator,bool> insert(const value_type& __x)
169 { return _M_t.insert_unique(__x); }
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_set.h 134 set(const _Self& __x) : _M_t(__x._M_t) {}
141 _Self& operator=(const _Self& __x) {
142 _M_t = __x._M_t;
162 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
164 void _M_swap_workaround(_Self& __x) { swap(__x); }
168 pair<iterator,bool> insert(const value_type& __x)
169 { return _M_t.insert_unique(__x); }
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
alias2.cpp 12 _Deque_iterator(const _Deque_iterator& __x)
13 : _M_cur(__x._M_cur),
14 _M_node(__x._M_node) {}
51 deque(const deque& __x) {}
  /ndk/tests/device/test-stlport_static-exception/jni/
alias2.cpp 12 _Deque_iterator(const _Deque_iterator& __x)
13 : _M_cur(__x._M_cur),
14 _M_node(__x._M_node) {}
51 deque(const deque& __x) {}
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_set.h 134 set(const _Self& __x) : _M_t(__x._M_t) {}
141 _Self& operator=(const _Self& __x) {
142 _M_t = __x._M_t;
162 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
164 void _M_swap_workaround(_Self& __x) { swap(__x); }
168 pair<iterator,bool> insert(const value_type& __x)
169 { return _M_t.insert_unique(__x); }
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_set.h 134 set(const _Self& __x) : _M_t(__x._M_t) {}
141 _Self& operator=(const _Self& __x) {
142 _M_t = __x._M_t;
162 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
164 void _M_swap_workaround(_Self& __x) { swap(__x); }
168 pair<iterator,bool> insert(const value_type& __x)
169 { return _M_t.insert_unique(__x); }
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_set.h 134 set(const _Self& __x) : _M_t(__x._M_t) {}
141 _Self& operator=(const _Self& __x) {
142 _M_t = __x._M_t;
162 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
164 void _M_swap_workaround(_Self& __x) { swap(__x); }
168 pair<iterator,bool> insert(const value_type& __x)
169 { return _M_t.insert_unique(__x); }
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_set.h 134 set(const _Self& __x) : _M_t(__x._M_t) {}
141 _Self& operator=(const _Self& __x) {
142 _M_t = __x._M_t;
162 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
164 void _M_swap_workaround(_Self& __x) { swap(__x); }
168 pair<iterator,bool> insert(const value_type& __x)
169 { return _M_t.insert_unique(__x); }
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_set.h 134 set(const _Self& __x) : _M_t(__x._M_t) {}
141 _Self& operator=(const _Self& __x) {
142 _M_t = __x._M_t;
162 void swap(_Self& __x) { _M_t.swap(__x._M_t); }
164 void _M_swap_workaround(_Self& __x) { swap(__x); }
168 pair<iterator,bool> insert(const value_type& __x)
169 { return _M_t.insert_unique(__x); }
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_queue.h 218 push(const value_type& __x)
219 { c.push_back(__x); }
223 push(value_type&& __x)
224 { c.push_back(std::move(__x)); }
270 operator==(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
271 { return __x.c == __y.c; }
288 operator<(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
289 { return __x.c < __y.c; }
294 operator!=(const queue<_Tp, _Seq>& __x, const queue<_Tp, _Seq>& __y)
295 { return !(__x == __y);
    [all...]

Completed in 1873 milliseconds

<<11121314151617181920>>