Home
last modified time | relevance | path

Searched defs:as_parser (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/char/
Dchar.hpp94 struct as_parser<char> struct
98 type;
100 typedef type value_type;
102 static constexpr type call(char ch) in call()
110 struct as_parser<wchar_t> struct
114 type;
116 typedef type value_type;
118 static constexpr type call(wchar_t ch) in call()
126 struct as_parser<char [2]> struct
130 type;
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/string/
Dliteral_string.hpp203 struct as_parser<char[N]> struct
207 type;
209 typedef type value_type;
211 static constexpr type call(char const* s) in call()
218 struct as_parser<char const[N]> : as_parser<char[N]> {}; struct
222 struct as_parser<wchar_t[N]> struct
226 type;
228 typedef type value_type;
230 static constexpr type call(wchar_t const* s) in call()
237 struct as_parser<wchar_t const[N]> : as_parser<wchar_t[N]> {}; struct
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/core/
Dparser.hpp137 struct as_parser : detail::deduce_as_parser<T> {}; struct
140 struct as_parser<unused_type> struct
142 typedef unused_type type;
143 typedef unused_type value_type;
144 static constexpr type call(unused_type) in call()
151 struct as_parser<Derived struct
154 typedef Derived const& type;
155 typedef Derived value_type;
156 static constexpr type call(Derived const& p) in call()
163 struct as_parser<parser<Derived>> struct
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/meta/
Das_parser.hpp77 struct as_parser : impl::default_as_parser<T> {}; struct
80 struct as_parser<char> : impl::char_as_parser {}; struct
83 struct as_parser<wchar_t> : impl::wchar_as_parser {}; struct
86 struct as_parser<char*> : impl::string_as_parser {}; struct
89 struct as_parser<char const*> : impl::string_as_parser {}; struct
92 struct as_parser<wchar_t*> : impl::wstring_as_parser {}; struct
95 struct as_parser<wchar_t const*> : impl::wstring_as_parser {}; struct
98 struct as_parser<char[N]> : impl::string_as_parser {}; struct
101 struct as_parser<wchar_t[N]> : impl::wstring_as_parser {}; struct
104 struct as_parser<char const[N]> : impl::string_as_parser {}; struct
[all …]