Searched refs:__beg (Results 1 – 6 of 6) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _bitset.h | 74 static size_t _S_count(const unsigned char *__beg, const unsigned char *__end) in _S_count() argument 78 for (; __beg != __end; ++__beg) { in _S_count() 80 if ((*__beg & (1 << i)) != 0) { ++__result; } in _S_count()
|
D | _string.h | 618 size_type __beg, size_type __n) { in insert() argument 619 if (__pos > size() || __beg > __s.size()) in insert() 621 size_type __len = (min) (__n, __s.size() - __beg); in insert() 625 __s._M_Start() + __beg, __s._M_Start() + __beg + __len, &__s == this); in insert()
|
D | _string_sum.h | 158 _BString& insert(size_type __pos, const _BString& __s, size_type __beg, size_type __n) in insert() argument 159 {return _M_get_storage().insert(__pos, __s, __beg, __n);} in insert()
|
D | _string_workaround.h | 325 size_type __beg, size_type __n) { in insert() argument 326 _Base::insert(__pos, __s, __beg, __n); in insert()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _string.h | 397 size_type __beg, size_type __n) { in insert() argument 399 _M_non_dbg_impl.insert(__pos, __s._M_non_dbg_impl, __beg, __n); in insert()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | vector | 843 (const void *__beg, const void *__end, const void *__old_mid, const void *__new_mid) 846 if (__beg && is_same<allocator_type, __default_allocator_type>::value) 847 __sanitizer_annotate_contiguous_container(__beg, __end, __old_mid, __new_mid);
|