/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
stl_relops.h | 85 operator!=(const _Tp& __x, const _Tp& __y) 86 { return !(__x == __y); } 98 operator>(const _Tp& __x, const _Tp& __y) 99 { return __y < __x; } 111 operator<=(const _Tp& __x, const _Tp& __y) 112 { return !(__y < __x); } 124 operator>=(const _Tp& __x, const _Tp& __y) 125 { return !(__x < __y); }
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_relops.h | 85 operator!=(const _Tp& __x, const _Tp& __y) 86 { return !(__x == __y); } 98 operator>(const _Tp& __x, const _Tp& __y) 99 { return __y < __x; } 111 operator<=(const _Tp& __x, const _Tp& __y) 112 { return !(__y < __x); } 124 operator>=(const _Tp& __x, const _Tp& __y) 125 { return !(__x < __y); }
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_relops.h | 85 operator!=(const _Tp& __x, const _Tp& __y) 86 { return !(__x == __y); } 98 operator>(const _Tp& __x, const _Tp& __y) 99 { return __y < __x; } 111 operator<=(const _Tp& __x, const _Tp& __y) 112 { return !(__y < __x); } 124 operator>=(const _Tp& __x, const _Tp& __y) 125 { return !(__x < __y); }
|
/external/stlport/stlport/stl/ |
_relops_cont.h | 8 const _STLP_TEMPLATE_CONTAINER& __y) { 9 return __x.size() == __y.size() && 10 equal(__x.begin(), __x.end(), __y.begin()); 16 const _STLP_TEMPLATE_CONTAINER& __y) { 18 __y.begin(), __y.end()); 26 _STLP_TEMPLATE_CONTAINER& __y) { 27 __x.swap(__y);
|
_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...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_relops_cont.h | 8 const _STLP_TEMPLATE_CONTAINER& __y) { 9 return __x.size() == __y.size() && 10 equal(__x.begin(), __x.end(), __y.begin()); 16 const _STLP_TEMPLATE_CONTAINER& __y) { 18 __y.begin(), __y.end()); 26 _STLP_TEMPLATE_CONTAINER& __y) { 27 __x.swap(__y);
|
_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...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_relops_cont.h | 8 const _STLP_TEMPLATE_CONTAINER& __y) { 9 return __x.size() == __y.size() && 10 equal(__x.begin(), __x.end(), __y.begin()); 16 const _STLP_TEMPLATE_CONTAINER& __y) { 18 __y.begin(), __y.end()); 26 _STLP_TEMPLATE_CONTAINER& __y) { 27 __x.swap(__y);
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_relops_cont.h | 8 const _STLP_TEMPLATE_CONTAINER& __y) { 9 return __x.size() == __y.size() && 10 equal(__x.begin(), __x.end(), __y.begin()); 16 const _STLP_TEMPLATE_CONTAINER& __y) { 18 __y.begin(), __y.end()); 26 _STLP_TEMPLATE_CONTAINER& __y) { 27 __x.swap(__y);
|
/bionic/libstdc++/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/ndk/sources/cxx-stl/gabi++/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/ndk/sources/cxx-stl/system/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/system/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/system/include/ |
stl_pair.h | 78 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) 80 return __x.first == __y.first && __x.second == __y.second; 84 inline bool 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); 91 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { 92 return !(__x == __y); 96 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) { [all...] |
/external/clang/lib/Headers/ |
tgmath.h | 57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ 58 __tg_promote(__y))) 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ 60 __tg_promote(__y) + \ 473 __tg_pow(float __x, float __y) {return powf(__x, __y);} 477 __tg_pow(double __x, double __y) {return pow(__x, __y);} 481 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} [all...] |
/prebuilt/sdk/11/renderscript/clang-include/ |
tgmath.h | 57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ 58 __tg_promote(__y))) 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ 60 __tg_promote(__y) + \ 473 __tg_pow(float __x, float __y) {return powf(__x, __y);} 477 __tg_pow(double __x, double __y) {return pow(__x, __y);} 481 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} [all...] |
/prebuilt/sdk/12/renderscript/clang-include/ |
tgmath.h | 57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ 58 __tg_promote(__y))) 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ 60 __tg_promote(__y) + \ 473 __tg_pow(float __x, float __y) {return powf(__x, __y);} 477 __tg_pow(double __x, double __y) {return pow(__x, __y);} 481 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} [all...] |
/prebuilt/sdk/13/renderscript/clang-include/ |
tgmath.h | 57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ 58 __tg_promote(__y))) 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ 60 __tg_promote(__y) + \ 473 __tg_pow(float __x, float __y) {return powf(__x, __y);} 477 __tg_pow(double __x, double __y) {return pow(__x, __y);} 481 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} [all...] |
/prebuilt/sdk/14/renderscript/clang-include/ |
tgmath.h | 57 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ 58 __tg_promote(__y))) 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ 60 __tg_promote(__y) + \ 473 __tg_pow(float __x, float __y) {return powf(__x, __y);} 477 __tg_pow(double __x, double __y) {return pow(__x, __y);} 481 __tg_pow(long double __x, long double __y) {return powl(__x, __y);} [all...] |