Searched refs:_M_append_fast (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _string_sum_methods.h | 43 _Base& _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str) in _M_append_fast() function 45 _Base& _M_append_fast(_CharT const* __s, size_type __s_size, _Base &__str) in _M_append_fast() function 47 _Base& _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _Base &__str) in _M_append_fast() function 48 { return _M_append_fast(__s.c_str(), __s.size(), __str); } in _M_append_fast() 49 _Base& _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _Base &__str) in _M_append_fast() function 50 { return _M_append_fast(__s.b_str(), __str); } in _M_append_fast() 51 _Base& _M_append_fast(_Self const& __s, _Base &__str) in _M_append_fast() function 52 { return _M_append_fast(__s.data(), __s.size(), __str); } in _M_append_fast() 53 _Base& _M_append_fast(_STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc> const&, _Base &__str) in _M_append_fast() function 56 …_Base& _M_append_fast(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> c… in _M_append_fast() function [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _string_sum_methods.h | 41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) { in _M_append_fast() function 45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf) in _M_append_fast() function 47 _CharT* _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf) in _M_append_fast() function 48 { return _M_append_fast(__s.c_str(), __s.size(), __buf); } in _M_append_fast() 49 _CharT* _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf) in _M_append_fast() function 50 { return _M_append_fast(__s.b_str(), __buf); } in _M_append_fast() 51 _CharT* _M_append_fast(_Self const& __s, _CharT *__buf) in _M_append_fast() function 52 { return _M_append_fast(__s.data(), __s.size(), __buf); } in _M_append_fast() 53 …_CharT* _M_append_fast(_STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc> const&, _CharT *__bu… in _M_append_fast() function 56 …_CharT* _M_append_fast(_STLP_PRIV __bstr_sum<_CharT, _Traits, _Alloc, _Left, _Right, _StorageDir> … in _M_append_fast() function [all …]
|