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

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_numeric.c 74 _Tp __power(_Tp __x, _Integer __n, _MonoidOperation __opr) {
81 __x = __opr(__x, __x);
83 _Tp __result = __x;
87 __x = __opr(__x, __x);
89 __result = __opr(__result, __x);
95 _STLP_MPWFIX_CATCH_ACTION(__x = _Tp()
    [all...]
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_sgi.h 10 #define _STLP_NATIVE_HEADER(__x) </usr/include/CC/##__x>
11 #define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
12 #define _STLP_NATIVE_OLD_STREAMS_HEADER(__x) </usr/include/CC/##__x>
13 #define _STLP_NATIVE_CPP_C_HEADER(__x) </usr/include/CC/##__x>
14 #define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </usr/include/CC/##__x>
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_numeric.c 74 _Tp __power(_Tp __x, _Integer __n, _MonoidOperation __opr) {
81 __x = __opr(__x, __x);
83 _Tp __result = __x;
87 __x = __opr(__x, __x);
89 __result = __opr(__result, __x);
95 _STLP_MPWFIX_CATCH_ACTION(__x = _Tp()
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_sgi.h 10 #define _STLP_NATIVE_HEADER(__x) </usr/include/CC/##__x>
11 #define _STLP_NATIVE_C_HEADER(__x) </usr/include/##__x>
12 #define _STLP_NATIVE_OLD_STREAMS_HEADER(__x) </usr/include/CC/##__x>
13 #define _STLP_NATIVE_CPP_C_HEADER(__x) </usr/include/CC/##__x>
14 #define _STLP_NATIVE_CPP_RUNTIME_HEADER(__x) </usr/include/CC/##__x>
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_multiset.h 183 multiset(const multiset& __x)
184 : _M_t(__x._M_t) { }
194 multiset(multiset&& __x)
195 : _M_t(std::move(__x._M_t)) { }
222 operator=(const multiset& __x)
224 _M_t = __x._M_t;
237 operator=(multiset&& __x)
242 this->swap(__x);
382 swap(multiset& __x)
383 { _M_t.swap(__x._M_t);
    [all...]
stl_set.h 190 set(const set& __x)
191 : _M_t(__x._M_t) { }
201 set(set&& __x)
202 : _M_t(std::move(__x._M_t)) { }
229 operator=(const set& __x)
231 _M_t = __x._M_t;
244 operator=(set&& __x)
249 this->swap(__x);
389 swap(set& __x)
390 { _M_t.swap(__x._M_t);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_multiset.h 183 multiset(const multiset& __x)
184 : _M_t(__x._M_t) { }
194 multiset(multiset&& __x)
195 : _M_t(std::move(__x._M_t)) { }
222 operator=(const multiset& __x)
224 _M_t = __x._M_t;
237 operator=(multiset&& __x)
242 this->swap(__x);
382 swap(multiset& __x)
383 { _M_t.swap(__x._M_t);
    [all...]
stl_set.h 190 set(const set& __x)
191 : _M_t(__x._M_t) { }
201 set(set&& __x)
202 : _M_t(std::move(__x._M_t)) { }
229 operator=(const set& __x)
231 _M_t = __x._M_t;
244 operator=(set&& __x)
249 this->swap(__x);
389 swap(set& __x)
390 { _M_t.swap(__x._M_t);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_multiset.h 181 multiset(const multiset& __x)
182 : _M_t(__x._M_t) { }
192 multiset(multiset&& __x)
193 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
220 operator=(const multiset& __x)
222 _M_t = __x._M_t;
235 operator=(multiset&& __x)
239 this->swap(__x);
379 swap(multiset& __x)
380 { _M_t.swap(__x._M_t);
    [all...]
stl_set.h 188 set(const set& __x)
189 : _M_t(__x._M_t) { }
199 set(set&& __x)
200 : _M_t(std::forward<_Rep_type>(__x._M_t)) { }
227 operator=(const set& __x)
229 _M_t = __x._M_t;
242 operator=(set&& __x)
246 this->swap(__x);
386 swap(set& __x)
387 { _M_t.swap(__x._M_t);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_multiset.h 183 multiset(const multiset& __x)
184 : _M_t(__x._M_t) { }
194 multiset(multiset&& __x)
195 : _M_t(std::move(__x._M_t)) { }
222 operator=(const multiset& __x)
224 _M_t = __x._M_t;
237 operator=(multiset&& __x)
242 this->swap(__x);
382 swap(multiset& __x)
383 { _M_t.swap(__x._M_t);
    [all...]
stl_set.h 190 set(const set& __x)
191 : _M_t(__x._M_t) { }
201 set(set&& __x)
202 : _M_t(std::move(__x._M_t)) { }
229 operator=(const set& __x)
231 _M_t = __x._M_t;
244 operator=(set&& __x)
249 this->swap(__x);
389 swap(set& __x)
390 { _M_t.swap(__x._M_t);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_multiset.h 180 * @param __x A %multiset of identical element and allocator types.
183 * by @a __x.
185 multiset(const multiset& __x)
186 : _M_t(__x._M_t) { }
191 * @param __x A %multiset of identical element and allocator types.
193 * The newly-created %multiset contains the exact contents of @a __x.
194 * The contents of @a __x are a valid, but unspecified %multiset.
196 multiset(multiset&& __x)
198 : _M_t(std::move(__x._M_t)) { }
219 * @param __x A %multiset of identical element and allocator types
    [all...]
stl_set.h 189 * @param __x A %set of identical element and allocator types.
192 * by @a __x.
194 set(const set& __x)
195 : _M_t(__x._M_t) { }
200 * @param __x A %set of identical element and allocator types.
205 set(set&& __x)
207 : _M_t(std::move(__x._M_t)) { }
228 * @param __x A %set of identical element and allocator types.
230 * All the elements of @a __x are copied, but unlike the copy
234 operator=(const set& __x)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_multiset.h 183 multiset(const multiset& __x)
184 : _M_t(__x._M_t) { }
194 multiset(multiset&& __x)
195 : _M_t(std::move(__x._M_t)) { }
222 operator=(const multiset& __x)
224 _M_t = __x._M_t;
237 operator=(multiset&& __x)
242 this->swap(__x);
382 swap(multiset& __x)
383 { _M_t.swap(__x._M_t);
    [all...]
stl_set.h 190 set(const set& __x)
191 : _M_t(__x._M_t) { }
201 set(set&& __x)
202 : _M_t(std::move(__x._M_t)) { }
229 operator=(const set& __x)
231 _M_t = __x._M_t;
244 operator=(set&& __x)
249 this->swap(__x);
389 swap(set& __x)
390 { _M_t.swap(__x._M_t);
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_multiset.h 180 * @param __x A %multiset of identical element and allocator types.
183 * by @a __x.
185 multiset(const multiset& __x)
186 : _M_t(__x._M_t) { }
191 * @param __x A %multiset of identical element and allocator types.
193 * The newly-created %multiset contains the exact contents of @a __x.
194 * The contents of @a __x are a valid, but unspecified %multiset.
196 multiset(multiset&& __x)
198 : _M_t(std::move(__x._M_t)) { }
219 * @param __x A %multiset of identical element and allocator types
    [all...]
stl_set.h 189 * @param __x A %set of identical element and allocator types.
192 * by @a __x.
194 set(const set& __x)
195 : _M_t(__x._M_t) { }
200 * @param __x A %set of identical element and allocator types.
205 set(set&& __x)
207 : _M_t(std::move(__x._M_t)) { }
228 * @param __x A %set of identical element and allocator types.
230 * All the elements of @a __x are copied, but unlike the copy
234 operator=(const set& __x)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_multiset.h 184 * @param __x A %multiset of identical element and allocator types.
187 * by @a __x.
189 multiset(const multiset& __x)
190 : _M_t(__x._M_t) { }
195 * @param __x A %multiset of identical element and allocator types.
197 * The newly-created %multiset contains the exact contents of @a __x.
198 * The contents of @a __x are a valid, but unspecified %multiset.
200 multiset(multiset&& __x)
202 : _M_t(std::move(__x._M_t)) { }
223 * @param __x A %multiset of identical element and allocator types
    [all...]
  /external/stlport/stlport/stl/
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_function_base.h 66 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x == __y; }
79 bool operator()(const _Tp& __x, const _Tp& __y) const { return __x < __y; }
82 void _M_swap_workaround(less<_Tp>& __x) {}
115 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x + __y; }
120 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x - __y; }
135 _Tp operator()(const _Tp& __x, const _Tp& __y) const { return __x * __y;
    [all...]

Completed in 1368 milliseconds

1 2 3 4 5 67 8 91011>>