HomeSort by relevance Sort by last modified time
    Searched defs:__s_size (Results 1 - 3 of 3) sorted by null

  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf)
46 { return uninitialized_copy(__s, __s + __s_size, __buf); }
65 _CharT* _M_append_fast_pos(_CharT const* __s, size_type __s_size, _CharT *__buf,
67 { return uninitialized_copy(__s + __pos, __s + __pos + (min)(__n, __s_size - __pos), __buf); }
102 size_type __s_size = __s.size(); local
103 if (__s_size == 0)
106 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size))
108 if (__old_size + __s_size > this->capacity()) {
109 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1
126 size_type __s_size = (min)(__s.size() - __pos, __n); local
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf)
46 { return uninitialized_copy(__s, __s + __s_size, __buf); }
65 _CharT* _M_append_fast_pos(_CharT const* __s, size_type __s_size, _CharT *__buf,
67 { return uninitialized_copy(__s + __pos, __s + __pos + (min)(__n, __s_size - __pos), __buf); }
102 size_type __s_size = __s.size(); local
103 if (__s_size == 0)
106 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size))
108 if (__old_size + __s_size > this->capacity()) {
109 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1
126 size_type __s_size = (min)(__s.size() - __pos, __n); local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_string_sum_methods.h 45 _CharT* _M_append_fast(_CharT const* __s, size_type __s_size, _CharT *__buf)
46 { return uninitialized_copy(__s, __s + __s_size, __buf); }
65 _CharT* _M_append_fast_pos(_CharT const* __s, size_type __s_size, _CharT *__buf,
67 { return uninitialized_copy(__s + __pos, __s + __pos + (min)(__n, __s_size - __pos), __buf); }
102 size_type __s_size = __s.size(); local
103 if (__s_size == 0)
106 if (__s_size > this->max_size() || __old_size > (this->max_size() - __s_size))
108 if (__old_size + __s_size > this->capacity()) {
109 const size_type __len = __old_size + (max)(__old_size, __s_size) + 1
126 size_type __s_size = (min)(__s.size() - __pos, __n); local
    [all...]

Completed in 310 milliseconds