Home
last modified time | relevance | path

Searched refs:error_badrepeat (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/regex/doc/
Derror_type.qbk30 static const error_type error_badrepeat;
56 [[error_badrepeat][An attempt to repeat something that can not be repeated - for example a*+]]
/third_party/boost/boost/regex/v4/
Derror_type.hpp44 error_badrepeat = 13, enumerator
Dbasic_regex_parser.hpp361 …fail(regex_constants::error_badrepeat, 0, "The repeat operator \"*\" cannot start a regular expres… in parse_extended()
369 …fail(regex_constants::error_badrepeat, 0, "The repeat operator \"?\" cannot start a regular expres… in parse_extended()
377 …fail(regex_constants::error_badrepeat, 0, "The repeat operator \"+\" cannot start a regular expres… in parse_extended()
1019 …fail(regex_constants::error_badrepeat, ::boost::BOOST_REGEX_DETAIL_NS::distance(m_base, m_position… in parse_repeat()
1059 fail(regex_constants::error_badrepeat, m_position - m_base); in parse_repeat()
1113 fail(regex_constants::error_badrepeat, m_position - m_base); in parse_repeat()
2692 …fail(regex_constants::error_badrepeat, m_position - m_base, "A repetition operator cannot be appli… in parse_perl_extension()
/third_party/boost/boost/xpressive/
Dregex_constants.hpp214 error_badrepeat, ///< One of *?+{ was not preceded by a valid regular expression. enumerator
Dregex_compiler.hpp561 BOOST_THROW_EXCEPTION(regex_error(error_badrepeat, "quantifier not expected")); in parse_atom()
/third_party/boost/boost/xpressive/detail/dynamic/
Dmatchable.hpp73 regex_error(regex_constants::error_badrepeat, "expression cannot be quantified") in repeat()
Ddynamic.hpp117 regex_error(regex_constants::error_badrepeat, "expression cannot be quantified") in repeat_()
/third_party/boost/boost/regex/
Dconcepts.hpp356 e1 = global_regex_namespace::regex_constants::error_badrepeat; in global_constraints()