Searched defs:as_parser (Results 1 – 4 of 4) sorted by relevance
94 struct as_parser<char> struct98 type;100 typedef type value_type;102 static constexpr type call(char ch) in call()110 struct as_parser<wchar_t> struct114 type;116 typedef type value_type;118 static constexpr type call(wchar_t ch) in call()126 struct as_parser<char [2]> struct130 type;[all …]
77 struct as_parser : impl::default_as_parser<T> {}; struct80 struct as_parser<char> : impl::char_as_parser {}; struct83 struct as_parser<wchar_t> : impl::wchar_as_parser {}; struct86 struct as_parser<char*> : impl::string_as_parser {}; struct89 struct as_parser<char const*> : impl::string_as_parser {}; struct92 struct as_parser<wchar_t*> : impl::wstring_as_parser {}; struct95 struct as_parser<wchar_t const*> : impl::wstring_as_parser {}; struct98 struct as_parser<char[N]> : impl::string_as_parser {}; struct101 struct as_parser<wchar_t[N]> : impl::wstring_as_parser {}; struct104 struct as_parser<char const[N]> : impl::string_as_parser {}; struct[all …]
204 struct as_parser<char[N]> struct208 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]> {}; struct223 struct as_parser<wchar_t[N]> struct227 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 …]
137 struct as_parser : detail::deduce_as_parser<T> {}; struct140 struct as_parser<unused_type> struct142 typedef unused_type type;143 typedef unused_type value_type;144 static constexpr type call(unused_type) in call()151 struct as_parser<Derived struct154 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 …]