HomeSort by relevance Sort by last modified time
    Searched refs:__x (Results 251 - 275 of 1686) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_pair.h 81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
82 { return __x.first == __y.first && __x.second == __y.second; }
85 inline bool _STLP_CALL operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second);
92 inline bool _STLP_CALL operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
93 { return !(__x == __y); }
96 inline bool _STLP_CALL operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_pair.h 81 inline bool _STLP_CALL operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
82 { return __x.first == __y.first && __x.second == __y.second; }
85 inline bool _STLP_CALL operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second);
92 inline bool _STLP_CALL operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
93 { return !(__x == __y); }
96 inline bool _STLP_CALL operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
stl_map.h 117 bool operator()(const value_type& __x, const value_type& __y) const
118 { return comp(__x.first, __y.first); }
172 map(const map& __x)
173 : _M_t(__x._M_t) { }
183 map(map&& __x)
184 : _M_t(std::move(__x._M_t)) { }
253 operator=(const map& __x)
255 _M_t = __x._M_t;
268 operator=(map&& __x)
273 this->swap(__x);
    [all...]
stl_multimap.h 117 bool operator()(const value_type& __x, const value_type& __y) const
118 { return comp(__x.first, __y.first); }
170 multimap(const multimap& __x)
171 : _M_t(__x._M_t) { }
181 multimap(multimap&& __x)
182 : _M_t(std::move(__x._M_t)) { }
250 operator=(const multimap& __x)
252 _M_t = __x._M_t;
265 operator=(multimap&& __x)
270 this->swap(__x);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_multimap.h 124 bool operator()(const value_type& __x, const value_type& __y) const
125 { return comp(__x.first, __y.first); }
172 * @param __x A %multimap of identical element and allocator types.
175 * used by @a __x.
177 multimap(const multimap& __x)
178 : _M_t(__x._M_t) { }
183 * @param __x A %multimap of identical element and allocator types.
185 * The newly-created %multimap contains the exact contents of @a __x.
186 * The contents of @a __x are a valid, but unspecified %multimap.
188 multimap(multimap&& __x)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_multimap.h 124 bool operator()(const value_type& __x, const value_type& __y) const
125 { return comp(__x.first, __y.first); }
172 * @param __x A %multimap of identical element and allocator types.
175 * used by @a __x.
177 multimap(const multimap& __x)
178 : _M_t(__x._M_t) { }
183 * @param __x A %multimap of identical element and allocator types.
185 * The newly-created %multimap contains the exact contents of @a __x.
186 * The contents of @a __x are a valid, but unspecified %multimap.
188 multimap(multimap&& __x)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_map.h 115 bool operator()(const value_type& __x, const value_type& __y) const
116 { return comp(__x.first, __y.first); }
170 map(const map& __x)
171 : _M_t(__x._M_t) { }
181 map(map&& __x)
182 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
251 operator=(const map& __x)
253 _M_t = __x._M_t;
266 operator=(map&& __x)
270 this->swap(__x);
    [all...]
stl_multimap.h 115 bool operator()(const value_type& __x, const value_type& __y) const
116 { return comp(__x.first, __y.first); }
168 multimap(const multimap& __x)
169 : _M_t(__x._M_t) { }
179 multimap(multimap&& __x)
180 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
248 operator=(const multimap& __x)
250 _M_t = __x._M_t;
263 operator=(multimap&& __x)
267 this->swap(__x);
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_map.h 115 bool operator()(const value_type& __x, const value_type& __y) const
116 { return comp(__x.first, __y.first); }
170 map(const map& __x)
171 : _M_t(__x._M_t) { }
181 map(map&& __x)
182 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
251 operator=(const map& __x)
253 _M_t = __x._M_t;
266 operator=(map&& __x)
270 this->swap(__x);
    [all...]
stl_multimap.h 115 bool operator()(const value_type& __x, const value_type& __y) const
116 { return comp(__x.first, __y.first); }
168 multimap(const multimap& __x)
169 : _M_t(__x._M_t) { }
179 multimap(multimap&& __x)
180 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
248 operator=(const multimap& __x)
250 _M_t = __x._M_t;
263 operator=(multimap&& __x)
267 this->swap(__x);
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_map.h 115 bool operator()(const value_type& __x, const value_type& __y) const
116 { return comp(__x.first, __y.first); }
170 map(const map& __x)
171 : _M_t(__x._M_t) { }
181 map(map&& __x)
182 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
251 operator=(const map& __x)
253 _M_t = __x._M_t;
266 operator=(map&& __x)
270 this->swap(__x);
    [all...]
stl_multimap.h 115 bool operator()(const value_type& __x, const value_type& __y) const
116 { return comp(__x.first, __y.first); }
168 multimap(const multimap& __x)
169 : _M_t(__x._M_t) { }
179 multimap(multimap&& __x)
180 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
248 operator=(const multimap& __x)
250 _M_t = __x._M_t;
263 operator=(multimap&& __x)
267 this->swap(__x);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_map.h 117 bool operator()(const value_type& __x, const value_type& __y) const
118 { return comp(__x.first, __y.first); }
172 map(const map& __x)
173 : _M_t(__x._M_t) { }
183 map(map&& __x)
184 : _M_t(std::move(__x._M_t)) { }
253 operator=(const map& __x)
255 _M_t = __x._M_t;
268 operator=(map&& __x)
273 this->swap(__x);
    [all...]
stl_multimap.h 117 bool operator()(const value_type& __x, const value_type& __y) const
118 { return comp(__x.first, __y.first); }
170 multimap(const multimap& __x)
171 : _M_t(__x._M_t) { }
181 multimap(multimap&& __x)
182 : _M_t(std::move(__x._M_t)) { }
250 operator=(const multimap& __x)
252 _M_t = __x._M_t;
265 operator=(multimap&& __x)
270 this->swap(__x);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_map.h 119 bool operator()(const value_type& __x, const value_type& __y) const
120 { return comp(__x.first, __y.first); }
169 * @param __x A %map of identical element and allocator types.
172 * used by @a __x.
174 map(const map& __x)
175 : _M_t(__x._M_t) { }
180 * @param __x A %map of identical element and allocator types.
182 * The newly-created %map contains the exact contents of @a __x.
183 * The contents of @a __x are a valid, but unspecified %map.
185 map(map&& __x)
    [all...]
stl_multimap.h 119 bool operator()(const value_type& __x, const value_type& __y) const
120 { return comp(__x.first, __y.first); }
167 * @param __x A %multimap of identical element and allocator types.
170 * used by @a __x.
172 multimap(const multimap& __x)
173 : _M_t(__x._M_t) { }
178 * @param __x A %multimap of identical element and allocator types.
180 * The newly-created %multimap contains the exact contents of @a __x.
181 * The contents of @a __x are a valid, but unspecified %multimap.
183 multimap(multimap&& __x)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_map.h 117 bool operator()(const value_type& __x, const value_type& __y) const
118 { return comp(__x.first, __y.first); }
172 map(const map& __x)
173 : _M_t(__x._M_t) { }
183 map(map&& __x)
184 : _M_t(std::move(__x._M_t)) { }
253 operator=(const map& __x)
255 _M_t = __x._M_t;
268 operator=(map&& __x)
273 this->swap(__x);
    [all...]
stl_multimap.h 117 bool operator()(const value_type& __x, const value_type& __y) const
118 { return comp(__x.first, __y.first); }
170 multimap(const multimap& __x)
171 : _M_t(__x._M_t) { }
181 multimap(multimap&& __x)
182 : _M_t(std::move(__x._M_t)) { }
250 operator=(const multimap& __x)
252 _M_t = __x._M_t;
265 operator=(multimap&& __x)
270 this->swap(__x);
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_map.h 119 bool operator()(const value_type& __x, const value_type& __y) const
120 { return comp(__x.first, __y.first); }
169 * @param __x A %map of identical element and allocator types.
172 * used by @a __x.
174 map(const map& __x)
175 : _M_t(__x._M_t) { }
180 * @param __x A %map of identical element and allocator types.
182 * The newly-created %map contains the exact contents of @a __x.
183 * The contents of @a __x are a valid, but unspecified %map.
185 map(map&& __x)
    [all...]
stl_multimap.h 119 bool operator()(const value_type& __x, const value_type& __y) const
120 { return comp(__x.first, __y.first); }
167 * @param __x A %multimap of identical element and allocator types.
170 * used by @a __x.
172 multimap(const multimap& __x)
173 : _M_t(__x._M_t) { }
178 * @param __x A %multimap of identical element and allocator types.
180 * The newly-created %multimap contains the exact contents of @a __x.
181 * The contents of @a __x are a valid, but unspecified %multimap.
183 multimap(multimap&& __x)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_multimap.h 124 bool operator()(const value_type& __x, const value_type& __y) const
125 { return comp(__x.first, __y.first); }
172 * @param __x A %multimap of identical element and allocator types.
175 * used by @a __x.
177 multimap(const multimap& __x)
178 : _M_t(__x._M_t) { }
183 * @param __x A %multimap of identical element and allocator types.
185 * The newly-created %multimap contains the exact contents of @a __x.
186 * The contents of @a __x are a valid, but unspecified %multimap.
188 multimap(multimap&& __x)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_multiset.h 187 * @param __x A %multiset of identical element and allocator types.
190 * by @a __x.
192 multiset(const multiset& __x)
193 : _M_t(__x._M_t) { }
198 * @param __x A %multiset of identical element and allocator types.
200 * The newly-created %multiset contains the exact contents of @a __x.
201 * The contents of @a __x are a valid, but unspecified %multiset.
203 multiset(multiset&& __x)
205 : _M_t(std::move(__x._M_t)) { }
253 * @param __x A %multiset of identical element and allocator types
    [all...]
  /external/stlport/stlport/stl/
_ctraits_fns.h 37 bool operator()(const typename _Traits::char_type& __x,
39 { return _Traits::eq(__x, __y); }
47 bool operator()(const typename _Traits::char_type& __x) const
48 { return _Traits::eq(__x, __val); }
57 bool operator()(const typename _Traits::char_type& __x) const
58 { return !_Traits::eq(__x, __val); }
67 bool operator()(const typename _Traits::char_type& __x) const
68 { return _Traits::eq_int_type(_Traits::to_int_type(__x), __val); }
77 bool operator()(const typename _Traits::char_type& __x,
79 { return _Traits::lt(__x, __y);
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ctraits_fns.h 37 bool operator()(const typename _Traits::char_type& __x,
39 { return _Traits::eq(__x, __y); }
47 bool operator()(const typename _Traits::char_type& __x) const
48 { return _Traits::eq(__x, __val); }
57 bool operator()(const typename _Traits::char_type& __x) const
58 { return !_Traits::eq(__x, __val); }
67 bool operator()(const typename _Traits::char_type& __x) const
68 { return _Traits::eq_int_type(_Traits::to_int_type(__x), __val); }
77 bool operator()(const typename _Traits::char_type& __x,
79 { return _Traits::lt(__x, __y);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/profile/
multiset.h 77 multiset(const multiset& __x)
78 : _Base(__x) { }
80 multiset(const _Base& __x)
81 : _Base(__x) { }
84 multiset(multiset&& __x)
85 : _Base(std::move(__x))
97 operator=(const multiset& __x)
99 *static_cast<_Base*>(this) = __x;
105 operator=(multiset&& __x)
110 this->swap(__x);
    [all...]

Completed in 507 milliseconds

<<11121314151617181920>>