Home
last modified time | relevance | path

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

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/property_tree/include/boost/property_tree/json_parser/detail/
Dwide_encoding.hpp13 struct external_wide_encoding struct
15 typedef wchar_t external_char;
17 bool is_nl(wchar_t c) const { return c == L'\n'; } in is_nl()
18 bool is_ws(wchar_t c) const { in is_ws()
22 bool is_minus(wchar_t c) const { return c == L'-'; } in is_minus()
23 bool is_plusminus(wchar_t c) const { return c == L'+' || c == L'-'; } in is_plusminus()
24 bool is_dot(wchar_t c) const { return c == L'.'; } in is_dot()
25 bool is_eE(wchar_t c) const { return c == L'e' || c == L'E'; } in is_eE()
26 bool is_0(wchar_t c) const { return c == L'0'; } in is_0()
27 bool is_digit(wchar_t c) const { return c >= L'0' && c <= L'9'; } in is_digit()
[all …]