Searched defs:_M_append_fast (Results 1 - 2 of 2) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_string_sum_methods.h43 _Base& _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _Base &__str) function
45 _Base& _M_append_fast(_CharT const* __s, size_type __s_size, _Base &__str) function
47 _Base& _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _Base &__str) function
48 { return _M_append_fast(__s.c_str(), __s.size(), __str); }
49 _Base& _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _Base &__str) function
50 { return _M_append_fast(__s.b_str(), __str); }
51 _Base& _M_append_fast(_Self const& __s, _Base &__str) function
52 { return _M_append_fast(__s.data(), __s.size(), __str); }
53 _Base& _M_append_fast(_STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc> const&, _Base &__str) function
56 _Base& _M_append_fast(_STLP_PRI function
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_string_sum_methods.h41 _CharT* _M_append_fast(_STLP_PRIV __char_wrapper<_CharT> __c, _CharT *__buf) { function
45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf) function
47 _CharT* _M_append_fast(_STLP_PRIV __cstr_wrapper<_CharT> const& __s, _CharT *__buf) function
48 { return _M_append_fast(__s.c_str(), __s.size(), __buf); }
49 _CharT* _M_append_fast(_STLP_PRIV __bstr_wrapper<_CharT, _Traits, _Alloc> __s, _CharT *__buf) function
50 { return _M_append_fast(__s.b_str(), __buf); }
51 _CharT* _M_append_fast(_Self const& __s, _CharT *__buf) function
52 { return _M_append_fast(__s.data(), __s.size(), __buf); }
53 _CharT* _M_append_fast(_STLP_PRIV __sum_storage_elem<_CharT, _Traits, _Alloc> const&, _CharT *__buf) function
56 _CharT* _M_append_fast(_STLP_PRI function
[all...]

Completed in 78 milliseconds