Searched refs:can_be_null (Results 1 – 6 of 6) sorted by relevance
/third_party/boost/boost/regex/v4/ |
D | perl_matcher_non_recursive.hpp | 568 take_first = jmp->can_be_null & mask_take; in match_alt() 569 take_second = jmp->can_be_null & mask_skip; in match_alt() 612 take_first = rep->can_be_null & mask_take; in match_rep() 613 take_second = rep->can_be_null & mask_skip; in match_rep() 743 …return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_… in match_dot_repeat_slow() 782 …return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_… in match_dot_repeat_fast() 851 …return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_… in match_char_repeat() 925 …return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_… in match_set_repeat() 1000 …return (position == last) ? (rep->can_be_null & mask_skip) : can_start(*position, rep->_map, mask_… in match_long_set_repeat() 1477 if(0 == (rep->can_be_null & mask_skip)) in unwind_slow_dot_repeat() [all …]
|
D | perl_matcher_recursive.hpp | 274 take_first = jmp->can_be_null & mask_take; in match_alt() 275 take_second = jmp->can_be_null & mask_skip; in match_alt() 344 take_first = rep->can_be_null & mask_take; in match_rep() 345 take_second = rep->can_be_null & mask_skip; in match_rep() 855 if(rep->can_be_null & mask_skip) in backtrack_till_match()
|
D | states.hpp | 242 unsigned int can_be_null; // true if we match a NULL string member
|
D | basic_regex.hpp | 303 bool can_be_null()const in can_be_null() function in boost::BOOST_REGEX_DETAIL_NS::basic_regex_implementation 638 bool can_be_null()const in can_be_null() function in boost::basic_regex 641 return m_pimpl->can_be_null(); in can_be_null()
|
D | basic_regex_creator.hpp | 739 static_cast<re_alt*>(state)->can_be_null = 0; in fixup_pointers() 967 …->next.p, static_cast<re_alt*>(state)->_map, &static_cast<re_alt*>(state)->can_be_null, mask_take); in create_startmaps() 972 …)->alt.p, static_cast<re_alt*>(state)->_map, &static_cast<re_alt*>(state)->can_be_null, mask_skip); in create_startmaps() 1286 if(rep->can_be_null & mask_any) in create_startmap()
|
D | perl_matcher_common.hpp | 851 if(re.can_be_null()) in find_restart_any() 920 if(re.can_be_null() && match_prefix()) in find_restart_line()
|