Home
last modified time | relevance | path

Searched defs:extract_c_string (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/
Dstring_traits.hpp154 struct extract_c_string struct
156 typedef typename char_type_of<String>::type char_type;
159 static T const* call (T* str) in call()
165 static T const* call (T const* str) in call()
173 struct extract_c_string<T const> struct
175 typedef typename extract_c_string<T>::char_type char_type;
177 static typename extract_c_string<T>::char_type const* call (T const str) in call()
185 struct extract_c_string<T&> struct
187 typedef typename extract_c_string<T>::char_type char_type;
189 static typename extract_c_string<T>::char_type const* call (T& str) in call()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/support/traits/
Dstring_traits.hpp24 struct extract_c_string struct
27 static T const* call (T* str) in call()
33 static T const* call (T const* str) in call()
41 struct extract_c_string<T const> struct
43 static decltype(auto) call(T const str) in call()
51 struct extract_c_string<T&> struct
53 static decltype(auto) call(T& str) in call()
61 struct extract_c_string<T const&> struct
63 static decltype(auto) call(T const& str) in call()
70 struct extract_c_string<std::basic_string<T, Traits, Allocator> > struct
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/utree/
Dutree_traits.hpp125 struct extract_c_string< struct
128 typedef T char_type;
130 typedef spirit::basic_string<iterator_range<T const*>, I> string;
132 static T const* call (string& s) in call()
137 static T const* call (string const& s) in call()
144 struct extract_c_string<spirit::basic_string<std::string, I> > struct
146 typedef char char_type;
148 typedef spirit::basic_string<std::string, I> string;
150 static char const* call (string& s) in call()
155 static char const* call (string const& s) in call()