Lines Matching defs:__next_code_point

319   [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr bool operator()(char32_t __next_code_point) {
320 __EGC_property __next_property = __extended_grapheme_custer_property_boundary::__get_property(__next_code_point);
321 bool __result = __evaluate(__next_code_point, __next_property);
322 __prev_code_point_ = __next_code_point;
336 __evaluate(char32_t __next_code_point, __EGC_property __next_property) {
339 return __evaluate_none(__next_code_point, __next_property);
341 return __evaluate_GB9c_indic_conjunct_break(__next_code_point, __next_property);
343 return __evaluate_GB11_emoji(__next_code_point, __next_property);
345 return __evaluate_GB12_GB13_regional_indicator(__next_code_point, __next_property);
350 _LIBCPP_HIDE_FROM_ABI constexpr bool __evaluate_none(char32_t __next_code_point, __EGC_property __next_property) {
394 if (__indic_conjunct_break::__get_property(__next_code_point) == __inCB_property::__Consonant) {
421 __evaluate_GB9c_indic_conjunct_break(char32_t __next_code_point, __EGC_property __next_property) {
422 __inCB_property __break = __indic_conjunct_break::__get_property(__next_code_point);
425 return __evaluate_none(__next_code_point, __next_property);
438 return __evaluate_none(__next_code_point, __next_property);
452 return __evaluate_none(__next_code_point, __next_property);
458 __evaluate_GB11_emoji(char32_t __next_code_point, __EGC_property __next_property) {
474 return __evaluate_none(__next_code_point, __next_property);
482 return __evaluate_none(__next_code_point, __next_property);
488 __evaluate_GB12_GB13_regional_indicator(char32_t __next_code_point, __EGC_property __next_property) {
492 return __evaluate_none(__next_code_point, __next_property);