/ndk/sources/cxx-stl/stlport/src/ |
D | string.cpp | 41 # define basic_string _STLP_NON_DBG_NAME(str) macro 43 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >; variable 44 template class _STLP_CLASS_DECLSPEC __construct_checker<basic_string<char, char_traits<char>, alloc… 46 # undef basic_string 50 # define basic_string _STLP_NO_MEM_T_NAME(str) macro 55 template class _STLP_CLASS_DECLSPEC basic_string<char, char_traits<char>, allocator<char> >; variable 57 # if defined (basic_string) 59 # undef basic_string 70 # define basic_string _STLP_NON_DBG_NAME(str) macro 72 template class _STLP_CLASS_DECLSPEC basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> … variable [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | string | 75 class basic_string 95 basic_string() 97 explicit basic_string(const allocator_type& a); 98 basic_string(const basic_string& str); 99 basic_string(basic_string&& str) 101 basic_string(const basic_string& str, size_type pos, size_type n = npos, 103 basic_string(const_pointer s, const allocator_type& a = allocator_type()); 104 basic_string(const_pointer s, size_type n, const allocator_type& a = allocator_type()); 105 basic_string(size_type n, value_type c, const allocator_type& a = allocator_type()); 107 basic_string(InputIterator begin, InputIterator end, [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _string_operators.h | 28 inline basic_string<_CharT,_Traits,_Alloc> _STLP_CALL 29 operator+(const basic_string<_CharT,_Traits,_Alloc>& __s, 30 const basic_string<_CharT,_Traits,_Alloc>& __y) { 31 typedef basic_string<_CharT,_Traits,_Alloc> _Str; 45 inline basic_string<_CharT,_Traits,_Alloc> _STLP_CALL 47 const basic_string<_CharT,_Traits,_Alloc>& __y) { 49 typedef basic_string<_CharT,_Traits,_Alloc> _Str; 63 inline basic_string<_CharT,_Traits,_Alloc> _STLP_CALL 65 const basic_string<_CharT,_Traits,_Alloc>& __y) { 66 typedef basic_string<_CharT,_Traits,_Alloc> _Str; [all …]
|
D | _string_fwd.h | 32 class basic_string; variable 37 class basic_string; 40 typedef basic_string<char, char_traits<char>, allocator<char> > string; 43 typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;
|
D | _string.c | 40 # define basic_string _STLP_NO_MEM_T_NAME(str) macro 42 # define basic_string _STLP_NON_DBG_NAME(str) macro 50 # define __size_type__ _STLP_TYPENAME_ON_RETURN_TYPE basic_string<_CharT,_Traits,_Alloc>::size_type 149 #if !defined (basic_string) 158 void basic_string<_CharT,_Traits,_Alloc>::reserve(size_type __res_arg) { in reserve() 170 void basic_string<_CharT,_Traits,_Alloc>::_M_reserve(size_type __n) { in _M_reserve() 179 basic_string<_CharT,_Traits,_Alloc>& 180 basic_string<_CharT,_Traits,_Alloc>::append(size_type __n, _CharT __c) { in append() 195 basic_string<_CharT, _Traits, _Alloc>& 196 basic_string<_CharT, _Traits, _Alloc>::_M_append(const _CharT* __first, const _CharT* __last) { in _M_append() [all …]
|
D | _string_io.h | 36 const basic_string<_CharT,_Traits,_Alloc>& __s); 44 basic_string<_CharT, _Traits, _Alloc> __tmp(__sum); 53 basic_string<_CharT,_Traits,_Alloc>& __s); 58 basic_string<_CharT,_Traits,_Alloc>& __s, 66 basic_string<_CharT,_Traits,_Alloc>& __s) { in getline()
|
D | _string_hash.h | 34 __stl_string_hash(const basic_string<_CharT,_Traits,_Alloc>& __s) { in __stl_string_hash() 46 struct hash<basic_string<_CharT,_Traits,_Alloc> > { 47 size_t operator()(const basic_string<_CharT,_Traits,_Alloc>& __s) const
|
D | _string.h | 103 # define basic_string _STLP_NO_MEM_T_NAME(str) macro 105 # define basic_string _STLP_NON_DBG_NAME(str) 108 #if defined (basic_string) 121 class basic_string : _STLP_PRIVATE _STLP_PRIV _String_base<_CharT,_Alloc> 122 #if defined (_STLP_USE_PARTIAL_SPEC_WORKAROUND) && !defined (basic_string) 123 , public __stlport_class<basic_string<_CharT, _Traits, _Alloc> > 128 typedef basic_string<_CharT, _Traits, _Alloc> _Self; 158 explicit basic_string(const allocator_type& __a = allocator_type()) 160 basic_string() in basic_string() function 163 explicit basic_string(const allocator_type& __a) in basic_string() function [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/istream.formatted/istream_extractors/ |
D | streambuf.pass.cpp | 25 std::basic_string<CharT> str_; 30 testbuf(const std::basic_string<CharT>& str) in testbuf() 38 std::basic_string<CharT> str() const in str() 39 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters/ |
D | streambuf.pass.cpp | 25 std::basic_string<CharT> str_; 30 testbuf(const std::basic_string<CharT>& str) in testbuf() 38 std::basic_string<CharT> str() const in str() 39 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
D | ostream.pass.cpp | 26 std::basic_string<CharT> str_; 32 std::basic_string<CharT> str() const in str() 33 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
D | ios_base.pass.cpp | 25 std::basic_string<CharT> str_; 31 std::basic_string<CharT> str() const in str() 32 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
D | basic_ios.pass.cpp | 26 std::basic_string<CharT> str_; 32 std::basic_string<CharT> str() const in str() 33 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream.rvalue/ |
D | CharT_pointer.pass.cpp | 29 std::basic_string<CharT> str_; 35 std::basic_string<CharT> str() const in str() 36 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
/ndk/sources/cxx-stl/llvm-libc++/test/strings/basic.string/string.cons/ |
D | size_char_alloc.pass.cpp | 25 typedef std::basic_string<charT, std::char_traits<charT>, test_allocator<charT> > S; in test() 41 typedef std::basic_string<charT, std::char_traits<charT>, test_allocator<charT> > S; in test() 58 typedef std::basic_string<charT, std::char_traits<charT>, test_allocator<charT> > S; in test() 75 typedef std::basic_string<charT, std::char_traits<charT>, test_allocator<charT> > S; in test() 90 typedef std::basic_string<char, std::char_traits<char>, A> S; in main()
|
D | move_noexcept.pass.cpp | 37 typedef std::basic_string<char, std::char_traits<char>, test_allocator<char>> C; in main() 41 typedef std::basic_string<char, std::char_traits<char>, some_alloc<char>> C; in main()
|
D | default_noexcept.pass.cpp | 37 typedef std::basic_string<char, std::char_traits<char>, test_allocator<char>> C; in main() 41 typedef std::basic_string<char, std::char_traits<char>, some_alloc<char>> C; in main()
|
D | move_assign_noexcept.pass.cpp | 39 typedef std::basic_string<char, std::char_traits<char>, test_allocator<char>> C; in main() 43 typedef std::basic_string<char, std::char_traits<char>, some_alloc<char>> C; in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/input.streams/istream.unformatted/ |
D | get_streambuf_chart.pass.cpp | 23 std::basic_string<CharT> str_; 28 testbuf(const std::basic_string<CharT>& str) in testbuf() 36 std::basic_string<CharT> str() const in str() 37 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
D | get_streambuf.pass.cpp | 22 std::basic_string<CharT> str_; 27 testbuf(const std::basic_string<CharT>& str) in testbuf() 35 std::basic_string<CharT> str() const in str() 36 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
/ndk/sources/cxx-stl/llvm-libc++/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/ |
D | wchar_t_in.pass.cpp | 28 const std::basic_string<F::extern_type> from("some text"); in main() 29 const std::basic_string<F::intern_type> expected(from.begin(), from.end()); in main() 30 std::basic_string<F::intern_type> to(from.size(), F::intern_type()); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream.manip/ |
D | ends.pass.cpp | 26 std::basic_string<CharT> str_; 32 std::basic_string<CharT> str() const in str() 33 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
D | endl.pass.cpp | 28 std::basic_string<CharT> str_; 34 std::basic_string<CharT> str() const in str() 35 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream.unformatted/ |
D | put.pass.cpp | 25 std::basic_string<CharT> str_; 31 std::basic_string<CharT> str() const in str() 32 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/ |
D | pointer.pass.cpp | 25 std::basic_string<CharT> str_; 31 std::basic_string<CharT> str() const in str() 32 {return std::basic_string<CharT>(base::pbase(), base::pptr());} in str()
|