Searched refs:basic_string_ref (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/utility/include/boost/utility/ |
D | string_ref.hpp | 51 class basic_string_ref { class 67 BOOST_CONSTEXPR basic_string_ref () BOOST_NOEXCEPT in basic_string_ref() function in boost::basic_string_ref 72 BOOST_CONSTEXPR basic_string_ref (const basic_string_ref &rhs) BOOST_NOEXCEPT 79 basic_string_ref& operator=(const basic_string_ref &rhs) BOOST_NOEXCEPT 90 basic_string_ref(const charT* str) BOOST_NOEXCEPT in basic_string_ref() function in boost::basic_string_ref 94 basic_string_ref(const std::basic_string<charT, traits, Allocator>& str) in basic_string_ref() function in boost::basic_string_ref 104 BOOST_CONSTEXPR basic_string_ref(const charT* str, size_type len) BOOST_NOEXCEPT in basic_string_ref() function in boost::basic_string_ref 164 basic_string_ref substr(size_type pos, size_type n=npos) const { in substr() 167 return basic_string_ref(data() + pos, (std::min)(size() - pos, n)); in substr() 170 int compare(basic_string_ref x) const { in compare() [all …]
|
D | string_ref_fwd.hpp | 23 template<typename charT, typename traits = std::char_traits<charT> > class basic_string_ref; 24 typedef basic_string_ref<char, std::char_traits<char> > string_ref; 25 typedef basic_string_ref<wchar_t, std::char_traits<wchar_t> > wstring_ref; 28 typedef basic_string_ref<char16_t, std::char_traits<char16_t> > u16string_ref; 32 typedef basic_string_ref<char32_t, std::char_traits<char32_t> > u32string_ref;
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/utility/doc/ |
D | string_ref.qbk | 82 The header file "string_ref.hpp" defines a template `boost::basic_string_ref`, and four specializat… 88 BOOST_CONSTEXPR basic_string_ref (); // Constructs an empty string_ref 89 BOOST_CONSTEXPR basic_string_ref(const charT* str); // Constructs from a NULL-terminated string 90 …BOOST_CONSTEXPR basic_string_ref(const charT* str, size_type len); // Constructs from a pointer, l… 92 …basic_string_ref(const std::basic_string<charT, traits, Allocator>& str); // Constructs from a std… 93 basic_string_ref (const basic_string_ref &rhs); 94 basic_string_ref& operator=(const basic_string_ref &rhs); 131 size_type find(basic_string_ref s) const ; 133 size_type rfind(basic_string_ref s) const ; 138 size_type find_first_of(basic_string_ref s) const ; [all …]
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/utility/test/ |
D | string_ref_test_io.cpp | 65 typedef boost::basic_string_ref< char_type > string_ref_type; in test_string_ref_output() 80 typedef boost::basic_string_ref< char_type > string_ref_type; in test_padding() 124 typedef boost::basic_string_ref< char_type > string_ref_type; in test_padding_fill() 143 typedef boost::basic_string_ref< char_type > string_ref_type; in test_alignment()
|
D | string_ref_from_rvalue.cpp | 24 boost::basic_string_ref<char> sv(makeatemp()); in main()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/io/doc/ |
D | ostream_put.adoc | 71 Glen Fernandes updated the implementation of the `basic_string_ref` and
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/container/doc/ |
D | container.qbk | 1544 …* [@https://svn.boost.org/trac/boost/ticket/11333 Trac #11333: ['"boost::basic_string_ref should i…
|