Searched defs:match_traits (Results 1 – 5 of 5) sorted by relevance
/third_party/boost/boost/log/support/ |
D | spirit_qi.hpp | 50 struct match_traits< ExpressionT, boost_spirit_qi_expression_tag > struct 52 …it::result_of::compile< spirit::qi::domain, ExpressionT, spirit::unused_type >::type compiled_type; 54 static compiled_type compile(ExpressionT const& expr) in compile() 60 static bool matches(StringT const& str, ExpressionT const& expr) in matches() 70 struct match_traits< spirit::qi::rule< IteratorT, T1, T2, T3, T4 >, boost_spirit_qi_expression_tag > struct 72 typedef spirit::qi::rule< IteratorT, T1, T2, T3, T4 > compiled_type; 73 static compiled_type compile(compiled_type const& expr) { return expr; } in compile() 76 static bool matches(StringT const& str, compiled_type const& expr) in matches()
|
D | regex.hpp | 46 struct match_traits< ExpressionT, boost_regex_expression_tag > struct 48 typedef ExpressionT compiled_type; 49 static compiled_type compile(ExpressionT const& expr) { return expr; } in compile() 52 …const& expr, boost::regex_constants::match_flag_type flags = boost::regex_constants::match_default) in matches() 58 static bool matches( in matches()
|
D | xpressive.hpp | 48 struct match_traits< ExpressionT, boost_xpressive_expression_tag > struct 50 typedef ExpressionT compiled_type; 51 static compiled_type compile(ExpressionT const& expr) { return expr; } in compile() 54 …xpr, xpressive::regex_constants::match_flag_type flags = xpressive::regex_constants::match_default) in matches() 60 …gex< const CharT* > const& expr, xpressive::regex_constants::match_flag_type flags = xpressive::re… in matches()
|
D | std_regex.hpp | 57 struct match_traits< ExpressionT, std_regex_expression_tag > struct 59 typedef ExpressionT compiled_type; 60 static compiled_type compile(ExpressionT const& expr) { return expr; } in compile() 63 …T > const& expr, std::regex_constants::match_flag_type flags = std::regex_constants::match_default) in matches() 69 …gex< CharT, ReTraitsT > const& expr, std::regex_constants::match_flag_type flags = std::regex_cons… in matches()
|
D | spirit_classic.hpp | 89 struct match_traits< ExpressionT, boost_spirit_classic_expression_tag > struct 91 typedef ExpressionT compiled_type; 92 static compiled_type compile(ExpressionT const& expr) { return expr; } in compile() 95 static bool matches(StringT const& str, ExpressionT const& expr) in matches()
|