Searched refs:__beg (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A Dcrashes.cpp200 template<class _InputIterator> basic_string(_InputIterator __beg, _InputIterator __end, const _Alloc& __a = _Alloc());
201 template<class _InIterator> static _CharT* _S_construct(_InIterator __beg, _InIterator __end, const _Alloc& __a, input_iterator_tag);
202 template<class _FwdIterator> static _CharT* _S_construct(_FwdIterator __beg, _FwdIterator __end, const _Alloc& __a, forward_iterator_tag);
208 basic_string<_CharT, _Traits, _Alloc>:: basic_string(_InputIterator __beg, _InputIterator __end, const _Alloc& __a) argument
209 : _M_dataplus(_S_construct(__beg, __end, __a), __a) {}
/external/clang/test/Parser/
H A Dcxx-member-crash.cpp13 template<typename _CharT, typename _InIter> _InIter num_get<_CharT, _InIter>:: _M_extract_float(_InIter __beg, _InIter __end, ios_base& __io, ios_base::iostate& __err, string& __xtrc) const { argument
/external/stlport/stlport/stl/
H A D_bitset.h73 //returns the number of bit set within the buffer between __beg and __end.
74 static size_t _S_count(const unsigned char *__beg, const unsigned char *__end) argument
78 for (; __beg != __end; ++__beg) {
80 if ((*__beg & (1 << i)) != 0) { ++__result; }
H A D_string.h618 size_type __beg, size_type __n) {
619 if (__pos > size() || __beg > __s.size())
621 size_type __len = (min) (__n, __s.size() - __beg);
625 __s._M_Start() + __beg, __s._M_Start() + __beg + __len, &__s == this);
617 insert(size_type __pos, const _Self& __s, size_type __beg, size_type __n) argument
H A D_string_sum.h158 _BString& insert(size_type __pos, const _BString& __s, size_type __beg, size_type __n) argument
159 {return _M_get_storage().insert(__pos, __s, __beg, __n);}
H A D_string_workaround.h325 size_type __beg, size_type __n) {
326 _Base::insert(__pos, __s, __beg, __n);
324 insert(size_type __pos, const _Self& __s, size_type __beg, size_type __n) argument
/external/stlport/stlport/stl/debug/
H A D_string.h397 size_type __beg, size_type __n) {
399 _M_non_dbg_impl.insert(__pos, __s._M_non_dbg_impl, __beg, __n);
396 insert(size_type __pos, const _Self& __s, size_type __beg, size_type __n) argument

Completed in 4229 milliseconds