Searched refs:_CStrOnLeft (Results 1 – 1 of 1) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _string_sum.h | 126 typedef __bstr_sum<_CharT, _Traits, _Alloc, _Self, __cstr_wrapper<_CharT>, __on_left> _CStrOnLeft; typedef 127 _CStrOnLeft operator += (const _CharT* __s) { return append(__s); } 137 _CStrOnLeft append(const _CharT* __s) { in append() 139 return _CStrOnLeft(*this, __cstr_wrapper<_CharT>(__s, __n)); in append() 141 _CStrOnLeft append(const _CharT* __s, size_type __n) in append() 142 { return _CStrOnLeft(*this, __cstr_wrapper<_CharT>(__s, __n)); } in append()
|