/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ |
typeinfo | 109 bool before(const type_info& __arg) const; 110 bool operator==(const type_info& __arg) const; 113 /** Returns true if @c *this precedes @c __arg in the implementation's 118 bool before(const type_info& __arg) const 119 { return (__name[0] == '*' && __arg.__name[0] == '*') 120 ? __name < __arg.__name 121 : __builtin_strcmp (__name, __arg.__name) < 0; } 123 bool operator==(const type_info& __arg) const 125 return ((__name == __arg.__name) 127 __builtin_strcmp (__name, __arg.__name) == 0)) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ |
typeinfo | 109 bool before(const type_info& __arg) const; 110 bool operator==(const type_info& __arg) const; 113 /** Returns true if @c *this precedes @c __arg in the implementation's 118 bool before(const type_info& __arg) const 119 { return (__name[0] == '*' && __arg.__name[0] == '*') 120 ? __name < __arg.__name 121 : __builtin_strcmp (__name, __arg.__name) < 0; } 123 bool operator==(const type_info& __arg) const 125 return ((__name == __arg.__name) 127 __builtin_strcmp (__name, __arg.__name) == 0)) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ |
typeinfo | 103 bool before(const type_info& __arg) const; 104 bool operator==(const type_info& __arg) const; 107 /** Returns true if @c *this precedes @c __arg in the implementation's 112 bool before(const type_info& __arg) const 113 { return (__name[0] == '*' && __arg.__name[0] == '*') 114 ? __name < __arg.__name 115 : __builtin_strcmp (__name, __arg.__name) < 0; } 117 bool operator==(const type_info& __arg) const 119 return ((__name == __arg.__name) 121 __builtin_strcmp (__name, __arg.__name) == 0)) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ |
typeinfo | 109 bool before(const type_info& __arg) const; 110 bool operator==(const type_info& __arg) const; 113 /** Returns true if @c *this precedes @c __arg in the implementation's 118 bool before(const type_info& __arg) const 119 { return (__name[0] == '*' && __arg.__name[0] == '*') 120 ? __name < __arg.__name 121 : __builtin_strcmp (__name, __arg.__name) < 0; } 123 bool operator==(const type_info& __arg) const 125 return ((__name == __arg.__name) 127 __builtin_strcmp (__name, __arg.__name) == 0)) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ |
typeinfo | 108 bool before(const type_info& __arg) const; 109 bool operator==(const type_info& __arg) const; 112 /** Returns true if @c *this precedes @c __arg in the implementation's 117 bool before(const type_info& __arg) const 118 { return (__name[0] == '*' && __arg.__name[0] == '*') 119 ? __name < __arg.__name 120 : __builtin_strcmp (__name, __arg.__name) < 0; } 122 bool operator==(const type_info& __arg) const 124 return ((__name == __arg.__name) 126 __builtin_strcmp (__name, __arg.__name) == 0)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/include/ |
typeinfo | 89 bool before(const type_info& __arg) const _NOEXCEPT 90 {return __type_name < __arg.__type_name;} 96 bool operator==(const type_info& __arg) const _NOEXCEPT 97 {return __type_name == __arg.__type_name;} 99 bool operator!=(const type_info& __arg) const _NOEXCEPT 100 {return !operator==(__arg);}
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ |
typeinfo | 103 bool before(const type_info& __arg) const; 108 bool operator==(const type_info& __arg) const; 113 /** Returns true if @c *this precedes @c __arg in the implementation's 117 bool before(const type_info& __arg) const 118 { return __name < __arg.__name; } 120 bool operator==(const type_info& __arg) const 121 { return __name == __arg.__name; } 123 bool operator!=(const type_info& __arg) const 124 { return !operator==(__arg); }
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ |
typeinfo | 103 bool before(const type_info& __arg) const; 108 bool operator==(const type_info& __arg) const; 113 /** Returns true if @c *this precedes @c __arg in the implementation's 117 bool before(const type_info& __arg) const 118 { return __name < __arg.__name; } 120 bool operator==(const type_info& __arg) const 121 { return __name == __arg.__name; } 123 bool operator!=(const type_info& __arg) const 124 { return !operator==(__arg); }
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ |
typeinfo | 103 bool before(const type_info& __arg) const; 108 bool operator==(const type_info& __arg) const; 113 /** Returns true if @c *this precedes @c __arg in the implementation's 117 bool before(const type_info& __arg) const 118 { return __name < __arg.__name; } 120 bool operator==(const type_info& __arg) const 121 { return __name == __arg.__name; } 123 bool operator!=(const type_info& __arg) const 124 { return !operator==(__arg); }
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ |
typeinfo | 103 bool before(const type_info& __arg) const; 108 bool operator==(const type_info& __arg) const; 113 /** Returns true if @c *this precedes @c __arg in the implementation's 117 bool before(const type_info& __arg) const 118 { return __name < __arg.__name; } 120 bool operator==(const type_info& __arg) const 121 { return __name == __arg.__name; } 123 bool operator!=(const type_info& __arg) const 124 { return !operator==(__arg); }
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/ |
pointer.h | 69 set(element_type* __arg) 70 { _M_value = __arg; } 115 set(_Tp* __arg) 117 if (!__arg) 120 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 163 set(const _Tp* __arg) 165 if (!__arg) 168 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 284 _Pointer_adapter(element_type* __arg = 0) 285 { _Storage_policy::set(__arg); } [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/ |
pointer.h | 75 set(element_type* __arg) 76 { _M_value = __arg; } 121 set(_Tp* __arg) 123 if (!__arg) 126 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 173 set(const _Tp* __arg) 175 if (!__arg) 178 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 302 _Pointer_adapter(element_type* __arg = 0) 303 { _Storage_policy::set(__arg); } [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/ |
pointer.h | 75 set(element_type* __arg) 76 { _M_value = __arg; } 121 set(_Tp* __arg) 123 if (!__arg) 126 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 173 set(const _Tp* __arg) 175 if (!__arg) 178 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 302 _Pointer_adapter(element_type* __arg = 0) 303 { _Storage_policy::set(__arg); } [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/ |
pointer.h | 69 set(element_type* __arg) 70 { _M_value = __arg; } 115 set(_Tp* __arg) 117 if (!__arg) 120 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 163 set(const _Tp* __arg) 165 if (!__arg) 168 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 284 _Pointer_adapter(element_type* __arg = 0) 285 { _Storage_policy::set(__arg); } [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/ |
pointer.h | 69 set(element_type* __arg) 70 { _M_value = __arg; } 115 set(_Tp* __arg) 117 if (!__arg) 120 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 163 set(const _Tp* __arg) 165 if (!__arg) 168 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 284 _Pointer_adapter(element_type* __arg = 0) 285 { _Storage_policy::set(__arg); } [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/ |
pointer.h | 69 set(element_type* __arg) 70 { _M_value = __arg; } 115 set(_Tp* __arg) 117 if (!__arg) 120 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 163 set(const _Tp* __arg) 165 if (!__arg) 168 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 284 _Pointer_adapter(element_type* __arg = 0) 285 { _Storage_policy::set(__arg); } [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/ |
pointer.h | 69 set(element_type* __arg) 70 { _M_value = __arg; } 115 set(_Tp* __arg) 117 if (!__arg) 120 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 163 set(const _Tp* __arg) 165 if (!__arg) 168 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 284 _Pointer_adapter(element_type* __arg = 0) 285 { _Storage_policy::set(__arg); } [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/ |
pointer.h | 75 set(element_type* __arg) 76 { _M_value = __arg; } 121 set(_Tp* __arg) 123 if (!__arg) 126 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 173 set(const _Tp* __arg) 175 if (!__arg) 178 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 302 _Pointer_adapter(element_type* __arg = 0) 303 { _Storage_policy::set(__arg); } [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/ |
pointer.h | 78 set(element_type* __arg) 79 { _M_value = __arg; } 124 set(_Tp* __arg) 126 if (!__arg) 129 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 176 set(const _Tp* __arg) 178 if (!__arg) 181 _M_diff = reinterpret_cast<_UIntPtrType>(__arg) 297 _Pointer_adapter(element_type* __arg = 0) 298 { _Storage_policy::set(__arg); } [all...] |
/external/stlport/stlport/stl/ |
concept_checks.h | 61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0) 62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 63 static int __##__func##__ret##__arg##_unary_function_check 123 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 125 __ret (*__x)( __func&, const __arg& ) = \ 127 __func, __ret, __arg>::__unary_function_requirement_violation; \ 154 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) 195 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 196 typedef __ret (* __f_##__func##__ret##__arg##_unary_check)( __func&, \ 197 const __arg& ); [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
concept_checks.h | 61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0) 62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 63 static int __##__func##__ret##__arg##_unary_function_check 123 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 125 __ret (*__x)( __func&, const __arg& ) = \ 127 __func, __ret, __arg>::__unary_function_requirement_violation; \ 154 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) 195 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 196 typedef __ret (* __f_##__func##__ret##__arg##_unary_check)( __func&, \ 197 const __arg& ); [all...] |
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
concept_checks.h | 61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0) 62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 63 static int __##__func##__ret##__arg##_unary_function_check 123 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 125 __ret (*__x)( __func&, const __arg& ) = \ 127 __func, __ret, __arg>::__unary_function_requirement_violation; \ 154 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) 195 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 196 typedef __ret (* __f_##__func##__ret##__arg##_unary_check)( __func&, \ 197 const __arg& ); [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
concept_checks.h | 61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0) 62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 63 static int __##__func##__ret##__arg##_unary_function_check 123 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 125 __ret (*__x)( __func&, const __arg& ) = \ 127 __func, __ret, __arg>::__unary_function_requirement_violation; \ 154 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) 195 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 196 typedef __ret (* __f_##__func##__ret##__arg##_unary_check)( __func&, \ 197 const __arg& ); [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
concept_checks.h | 61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0) 62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 63 static int __##__func##__ret##__arg##_unary_function_check 123 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 125 __ret (*__x)( __func&, const __arg& ) = \ 127 __func, __ret, __arg>::__unary_function_requirement_violation; \ 154 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) 195 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 196 typedef __ret (* __f_##__func##__ret##__arg##_unary_check)( __func&, \ 197 const __arg& ); [all...] |
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
concept_checks.h | 61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0) 62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 63 static int __##__func##__ret##__arg##_unary_function_check 123 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 125 __ret (*__x)( __func&, const __arg& ) = \ 127 __func, __ret, __arg>::__unary_function_requirement_violation; \ 154 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) 195 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ 196 typedef __ret (* __f_##__func##__ret##__arg##_unary_check)( __func&, \ 197 const __arg& ); [all...] |