Searched refs:__code_point (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__format/ |
| H A D | width_estimation_table.h | 242 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr int __estimated_width(const char32_t __code_point) no… in __estimated_width() argument 245 if (__code_point > __table_upper_bound) [[unlikely]] in __estimated_width() 253 if (__code_point < (__entries[0] >> 14)) in __estimated_width() 256 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 14) | 0x3fffu) - __entries; in __estimated_width() 262 return 1 + (__code_point <= __upper_bound); in __estimated_width()
|
| H A D | escaped_output_table.h | 1018 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr bool __needs_escape(const char32_t __code_point) noex… in __needs_escape() argument 1021 if (__code_point >= __unallocated_region_lower_bound) in __needs_escape() 1024 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 11) | 0x7ffu) - __entries; in __needs_escape() 1030 return __code_point <= __upper_bound; in __needs_escape()
|
| H A D | extended_grapheme_cluster_table.h | 1628 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr __property __get_property(const char32_t __code_point… in __get_property() argument 1645 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 11) | 0x7ffu) - __entries; in __get_property() 1651 if (__code_point <= __upper_bound) in __get_property()
|
| H A D | unicode.h | 44 char32_t __code_point : 31; member 386 __next_code_point_(__code_point_view_.__consume().__code_point), in __extended_grapheme_cluster_view() 407 char32_t __code_point = __next_code_point_; in __consume() local 409 return {__code_point, __get_break()}; in __consume() 412 return {__code_point, __code_point_view_.__position()}; in __consume() 431 __next_code_point_ = __code_point_view_.__consume().__code_point; in __get_break()
|
| H A D | formatter_output.h | 172 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT… in requires() 186 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT… in __fill() 198 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT… in __fill() 204 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT… in __fill()
|
| H A D | parser_std_format_spec.h | 265 struct __code_point; 268 struct __code_point<char> { 274 struct __code_point<wchar_t> { 314 __code_point<_CharT> __fill_; 557 __code_point<_CharT> __fill_{};
|
| H A D | write_escaped.h | 182 if (!__formatter::__is_escaped_sequence_written(__str, __result.__code_point, __mark)) in __escape()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | print | 160 __unicode::__encode(__out_it, __view.__consume().__code_point);
|