Home
last modified time | relevance | path

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

/third_party/boost/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 …]
/third_party/boost/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 …]
/third_party/boost/boost/spirit/home/x3/string/
Dliteral_string.hpp204 struct as_parser<char[N]> struct
208 type;
210 typedef type value_type;
212 static constexpr type call(char const* s) in call()
219 struct as_parser<char const[N]> : as_parser<char[N]> {}; struct
223 struct as_parser<wchar_t[N]> struct
227 type;
229 typedef type value_type;
231 static constexpr type call(wchar_t const* s) in call()
238 struct as_parser<wchar_t const[N]> : as_parser<wchar_t[N]> {}; struct
[all …]
/third_party/boost/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 …]