HomeSort by relevance Sort by last modified time
    Searched full:__x (Results 426 - 450 of 1860) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/debug/
multimap.h 87 multimap(const multimap& __x)
88 : _Base(__x), _Safe_base() { }
90 multimap(const _Base& __x)
91 : _Base(__x), _Safe_base() { }
94 multimap(multimap&& __x)
95 : _Base(std::forward<multimap>(__x)), _Safe_base()
96 { this->_M_swap(__x); }
107 operator=(const multimap& __x)
109 *static_cast<_Base*>(this) = __x;
116 operator=(multimap&& __x)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/debug/
map.h 86 map(const map& __x)
87 : _Base(__x), _Safe_base() { }
89 map(const _Base& __x)
90 : _Base(__x), _Safe_base() { }
93 map(map&& __x)
94 : _Base(std::forward<map>(__x)), _Safe_base()
95 { this->_M_swap(__x); }
106 operator=(const map& __x)
108 *static_cast<_Base*>(this) = __x;
115 operator=(map&& __x)
    [all...]
multimap.h 87 multimap(const multimap& __x)
88 : _Base(__x), _Safe_base() { }
90 multimap(const _Base& __x)
91 : _Base(__x), _Safe_base() { }
94 multimap(multimap&& __x)
95 : _Base(std::forward<multimap>(__x)), _Safe_base()
96 { this->_M_swap(__x); }
107 operator=(const multimap& __x)
109 *static_cast<_Base*>(this) = __x;
116 operator=(multimap&& __x)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/debug/
map.h 86 map(const map& __x)
87 : _Base(__x), _Safe_base() { }
89 map(const _Base& __x)
90 : _Base(__x), _Safe_base() { }
93 map(map&& __x)
94 : _Base(std::forward<map>(__x)), _Safe_base()
95 { this->_M_swap(__x); }
106 operator=(const map& __x)
108 *static_cast<_Base*>(this) = __x;
115 operator=(map&& __x)
    [all...]
multimap.h 87 multimap(const multimap& __x)
88 : _Base(__x), _Safe_base() { }
90 multimap(const _Base& __x)
91 : _Base(__x), _Safe_base() { }
94 multimap(multimap&& __x)
95 : _Base(std::forward<multimap>(__x)), _Safe_base()
96 { this->_M_swap(__x); }
107 operator=(const multimap& __x)
109 *static_cast<_Base*>(this) = __x;
116 operator=(multimap&& __x)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/debug/
map.h 86 map(const map& __x)
87 : _Base(__x), _Safe_base() { }
89 map(const _Base& __x)
90 : _Base(__x), _Safe_base() { }
93 map(map&& __x)
94 : _Base(std::forward<map>(__x)), _Safe_base()
95 { this->_M_swap(__x); }
106 operator=(const map& __x)
108 *static_cast<_Base*>(this) = __x;
115 operator=(map&& __x)
    [all...]
multimap.h 87 multimap(const multimap& __x)
88 : _Base(__x), _Safe_base() { }
90 multimap(const _Base& __x)
91 : _Base(__x), _Safe_base() { }
94 multimap(multimap&& __x)
95 : _Base(std::forward<multimap>(__x)), _Safe_base()
96 { this->_M_swap(__x); }
107 operator=(const multimap& __x)
109 *static_cast<_Base*>(this) = __x;
116 operator=(multimap&& __x)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/debug/
map.h 86 map(const map& __x)
87 : _Base(__x), _Safe_base() { }
89 map(const _Base& __x)
90 : _Base(__x), _Safe_base() { }
93 map(map&& __x)
94 : _Base(std::forward<map>(__x)), _Safe_base()
95 { this->_M_swap(__x); }
106 operator=(const map& __x)
108 *static_cast<_Base*>(this) = __x;
115 operator=(map&& __x)
    [all...]
multimap.h 87 multimap(const multimap& __x)
88 : _Base(__x), _Safe_base() { }
90 multimap(const _Base& __x)
91 : _Base(__x), _Safe_base() { }
94 multimap(multimap&& __x)
95 : _Base(std::forward<multimap>(__x)), _Safe_base()
96 { this->_M_swap(__x); }
107 operator=(const multimap& __x)
109 *static_cast<_Base*>(this) = __x;
116 operator=(multimap&& __x)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/include/
__tree 61 // Returns: true if __x is a left child of its parent, else false
62 // Precondition: __x != nullptr.
66 __tree_is_left_child(_NodePtr __x) _NOEXCEPT
68 return __x == __x->__parent_->__left_;
71 // Determintes if the subtree rooted at __x is a proper red black subtree. If
72 // __x is a proper subtree, returns the black height (null counts as 1). If
73 // __x is an improper subtree, returns 0.
76 __tree_sub_invariant(_NodePtr __x)
78 if (__x == nullptr
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
slist 163 _Slist_iterator_base(_Slist_node_base* __x)
164 : _M_node(__x) {}
171 operator==(const _Slist_iterator_base& __x) const
172 { return _M_node == __x._M_node; }
175 operator!=(const _Slist_iterator_base& __x) const
176 { return _M_node != __x._M_node; }
192 _Slist_iterator(_Node* __x)
193 : _Slist_iterator_base(__x) {}
198 _Slist_iterator(const iterator& __x)
199 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
slist 165 _Slist_iterator_base(_Slist_node_base* __x)
166 : _M_node(__x) {}
173 operator==(const _Slist_iterator_base& __x) const
174 { return _M_node == __x._M_node; }
177 operator!=(const _Slist_iterator_base& __x) const
178 { return _M_node != __x._M_node; }
194 _Slist_iterator(_Node* __x)
195 : _Slist_iterator_base(__x) {}
200 _Slist_iterator(const iterator& __x)
201 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
slist 165 _Slist_iterator_base(_Slist_node_base* __x)
166 : _M_node(__x) {}
173 operator==(const _Slist_iterator_base& __x) const
174 { return _M_node == __x._M_node; }
177 operator!=(const _Slist_iterator_base& __x) const
178 { return _M_node != __x._M_node; }
194 _Slist_iterator(_Node* __x)
195 : _Slist_iterator_base(__x) {}
200 _Slist_iterator(const iterator& __x)
201 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
slist 163 _Slist_iterator_base(_Slist_node_base* __x)
164 : _M_node(__x) {}
171 operator==(const _Slist_iterator_base& __x) const
172 { return _M_node == __x._M_node; }
175 operator!=(const _Slist_iterator_base& __x) const
176 { return _M_node != __x._M_node; }
192 _Slist_iterator(_Node* __x)
193 : _Slist_iterator_base(__x) {}
198 _Slist_iterator(const iterator& __x)
199 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/
slist 163 _Slist_iterator_base(_Slist_node_base* __x)
164 : _M_node(__x) {}
171 operator==(const _Slist_iterator_base& __x) const
172 { return _M_node == __x._M_node; }
175 operator!=(const _Slist_iterator_base& __x) const
176 { return _M_node != __x._M_node; }
192 _Slist_iterator(_Node* __x)
193 : _Slist_iterator_base(__x) {}
198 _Slist_iterator(const iterator& __x)
199 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/
slist 163 _Slist_iterator_base(_Slist_node_base* __x)
164 : _M_node(__x) {}
171 operator==(const _Slist_iterator_base& __x) const
172 { return _M_node == __x._M_node; }
175 operator!=(const _Slist_iterator_base& __x) const
176 { return _M_node != __x._M_node; }
192 _Slist_iterator(_Node* __x)
193 : _Slist_iterator_base(__x) {}
198 _Slist_iterator(const iterator& __x)
199 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/
slist 163 _Slist_iterator_base(_Slist_node_base* __x)
164 : _M_node(__x) {}
171 operator==(const _Slist_iterator_base& __x) const
172 { return _M_node == __x._M_node; }
175 operator!=(const _Slist_iterator_base& __x) const
176 { return _M_node != __x._M_node; }
192 _Slist_iterator(_Node* __x)
193 : _Slist_iterator_base(__x) {}
198 _Slist_iterator(const iterator& __x)
199 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/
slist 165 _Slist_iterator_base(_Slist_node_base* __x)
166 : _M_node(__x) {}
173 operator==(const _Slist_iterator_base& __x) const
174 { return _M_node == __x._M_node; }
177 operator!=(const _Slist_iterator_base& __x) const
178 { return _M_node != __x._M_node; }
194 _Slist_iterator(_Node* __x)
195 : _Slist_iterator_base(__x) {}
200 _Slist_iterator(const iterator& __x)
201 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
slist 165 _Slist_iterator_base(_Slist_node_base* __x)
166 : _M_node(__x) {}
173 operator==(const _Slist_iterator_base& __x) const
174 { return _M_node == __x._M_node; }
177 operator!=(const _Slist_iterator_base& __x) const
178 { return _M_node != __x._M_node; }
194 _Slist_iterator(_Node* __x)
195 : _Slist_iterator_base(__x) {}
200 _Slist_iterator(const iterator& __x)
201 : _Slist_iterator_base(__x._M_node) {
    [all...]
  /external/stlport/stlport/stl/
_function.h 45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; }
50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; }
55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; }
60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; }
65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y;
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_function.h 45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; }
50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; }
55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; }
60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; }
65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y;
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_function.h 45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; }
50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; }
55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; }
60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; }
65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y;
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_function.h 45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; }
50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; }
55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; }
60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; }
65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y;
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_function.h 45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; }
50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; }
55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; }
60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; }
65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_function.h 45 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x != __y; }
50 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x > __y; }
55 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x >= __y; }
60 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x <= __y; }
65 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x / __y;
    [all...]

Completed in 946 milliseconds

<<11121314151617181920>>