/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...] |
_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...] |
_string_operators.h | 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 91 __result.append(__x); 98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator()); 105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator()) [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...] |
_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...] |
_string_operators.h | 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 91 __result.append(__x); 98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator()); 105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator()) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/profile/ |
set.h | 77 set(const set& __x) 78 : _Base(__x) { } 80 set(const _Base& __x) 81 : _Base(__x) { } 84 set(set&& __x) 85 : _Base(std::move(__x)) 97 operator=(const set& __x) 99 *static_cast<_Base*>(this) = __x; 105 operator=(set&& __x) 110 this->swap(__x); [all...] |
multimap.h | 77 multimap(const multimap& __x) 78 : _Base(__x) { } 80 multimap(const _Base& __x) 81 : _Base(__x) { } 84 multimap(multimap&& __x) 85 : _Base(std::move(__x)) 97 operator=(const multimap& __x) 99 *static_cast<_Base*>(this) = __x; 105 operator=(multimap&& __x) 110 this->swap(__x); [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/profile/ |
set.h | 77 set(const set& __x) 78 : _Base(__x) { } 80 set(const _Base& __x) 81 : _Base(__x) { } 84 set(set&& __x) 85 : _Base(std::move(__x)) 97 operator=(const set& __x) 99 *static_cast<_Base*>(this) = __x; 105 operator=(set&& __x) 110 this->swap(__x); [all...] |
multimap.h | 77 multimap(const multimap& __x) 78 : _Base(__x) { } 80 multimap(const _Base& __x) 81 : _Base(__x) { } 84 multimap(multimap&& __x) 85 : _Base(std::move(__x)) 97 operator=(const multimap& __x) 99 *static_cast<_Base*>(this) = __x; 105 operator=(multimap&& __x) 110 this->swap(__x); [all...] |
/prebuilts/ndk/5/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...] |
_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...] |
_string_operators.h | 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 91 __result.append(__x); 98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator()); 105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator()) [all...] |
/prebuilts/ndk/6/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...] |
_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...] |
_string_operators.h | 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 91 __result.append(__x); 98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator()); 105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator()) [all...] |
/prebuilts/ndk/7/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...] |
_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...] |
_string_operators.h | 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 91 __result.append(__x); 98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator()); 105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator()) [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/profile/ |
set.h | 77 set(const set& __x) 78 : _Base(__x) { } 80 set(const _Base& __x) 81 : _Base(__x) { } 84 set(set&& __x) 85 : _Base(std::move(__x)) 97 operator=(const set& __x) 99 *static_cast<_Base*>(this) = __x; 105 operator=(set&& __x) 110 this->swap(__x); [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/profile/ |
multiset.h | 77 multiset(const multiset& __x) 78 : _Base(__x) { } 80 multiset(const _Base& __x) 81 : _Base(__x) { } 84 multiset(multiset&& __x) 86 : _Base(std::move(__x)) 98 operator=(const multiset& __x) 100 *static_cast<_Base*>(this) = __x; 106 operator=(multiset&& __x) 111 this->swap(__x); [all...] |
set.h | 77 set(const set& __x) 78 : _Base(__x) { } 80 set(const _Base& __x) 81 : _Base(__x) { } 84 set(set&& __x) 86 : _Base(std::move(__x)) 98 operator=(const set& __x) 100 *static_cast<_Base*>(this) = __x; 106 operator=(set&& __x) 111 this->swap(__x); [all...] |
/prebuilts/ndk/8/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...] |
_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...] |
_string_operators.h | 80 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 87 _Str __result = _Str(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 89 _Str __result(_Reserve_t(), __x.size() + __n, __x.get_allocator()); 91 __result.append(__x); 98 operator+(const basic_string<_CharT,_Traits,_Alloc>& __x, 103 _Str __result = _Str(_Reserve_t(), __x.size() + 1, __x.get_allocator()); 105 _Str __result(_Reserve_t(), __x.size() + 1, __x.get_allocator()) [all...] |