Home
last modified time | relevance | path

Searched refs:__code_point (Results 1 – 9 of 9) sorted by relevance

/src/contrib/llvm-project/libcxx/include/__format/
H A Descaped_output_table.h837 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr bool __needs_escape(const char32_t __code_point) noex… in __needs_escape() argument
840 if(__code_point >= 0x000e0100 && __code_point <= 0x000e01ef) in __needs_escape()
844 if (__code_point >= 0x000323b0) in __needs_escape()
847 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 14) | 0x3fffu) - __entries; in __needs_escape()
853 return __code_point <= __upper_bound; in __needs_escape()
H A Dwidth_estimation_table.h241 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr int __estimated_width(const char32_t __code_point) no… in __estimated_width() argument
244 if (__code_point > __table_upper_bound) [[unlikely]] in __estimated_width()
252 if (__code_point < (__entries[0] >> 14)) in __estimated_width()
255 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 14) | 0x3fffu) - __entries; in __estimated_width()
261 return 1 + (__code_point <= __upper_bound); in __estimated_width()
H A Dindic_conjunct_break_table.h315 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr __property __get_property(const char32_t __code_point in __get_property() argument
332 ptrdiff_t __i = std::ranges::upper_bound(__entries, (__code_point << 11) | 0x7ffu) - __entries; in __get_property()
338 if (__code_point <= __upper_bound) in __get_property()
H A Dextended_grapheme_cluster_table.h1628 [[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 Dunicode.h46 char32_t __code_point : 31; member
534 … : __code_point_view_(__first, __last), __at_break_(__code_point_view_.__consume().__code_point) {} in __extended_grapheme_cluster_view()
551 char32_t __code_point = __at_break_.__current_code_point(); in __consume() local
554 if (__at_break_(__code_point_view_.__consume().__code_point)) in __consume()
558 return {__code_point, __position}; in __consume()
H A Dformatter_output.h174 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT… in requires()
188 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT… in __fill()
200 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT… in __fill()
206 _LIBCPP_HIDE_FROM_ABI _OutIt __fill(_OutIt __out_it, size_t __n, __format_spec::__code_point<_CharT… in __fill()
H A Dparser_std_format_spec.h264 struct __code_point;
267 struct __code_point<char> {
273 struct __code_point<wchar_t> {
313 __code_point<_CharT> __fill_;
556 __code_point<_CharT> __fill_{};
H A Dwrite_escaped.h197 …__escape = __formatter::__is_escaped_sequence_written(__str, __result.__code_point, __escape, __ma… in __escape()
/src/contrib/llvm-project/libcxx/include/
H A Dprint161 __unicode::__encode(__out_it, __view.__consume().__code_point);