Home
last modified time | relevance | path

Searched refs:category_lookup (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/char_encoding/unicode/
H A Dquery.hpp194 return static_cast<properties::category>(detail::category_lookup(ch) & 0x3F); in get_category()
214 return (detail::category_lookup(ch) & properties::hex_digit) != 0; in is_hex_digit()
224 return (detail::category_lookup(ch) & properties::alphabetic) != 0; in is_alphabetic()
234 return (detail::category_lookup(ch) & properties::uppercase) != 0; in is_uppercase()
239 return (detail::category_lookup(ch) & properties::lowercase) != 0; in is_lowercase()
244 return (detail::category_lookup(ch) & properties::white_space) != 0; in is_white_space()
277 return (detail::category_lookup(ch) & properties::noncharacter_code_point) != 0; in is_noncharacter_code_point()
282 return (detail::category_lookup(ch) & properties::default_ignorable_code_point) != 0; in is_default_ignorable_code_point()
H A Dcategory_table.hpp2210 inline ::boost::uint16_t category_lookup(::boost::uint32_t ch) in category_lookup() function