Lines Matching refs:expr
36 namespace expr = logging::expressions;
58 filter f = expr::attr< int >(data::attr1()) == 10; in BOOST_AUTO_TEST_CASE()
61 f = expr::attr< int >(data::attr1()) < 0; in BOOST_AUTO_TEST_CASE()
64 f = expr::attr< float >(data::attr1()).or_throw() > 0; in BOOST_AUTO_TEST_CASE()
66 f = expr::attr< float >(data::attr1()) > 0; in BOOST_AUTO_TEST_CASE()
69 f = expr::attr< int >(data::attr4()).or_throw() >= 1; in BOOST_AUTO_TEST_CASE()
71 f = expr::attr< int >(data::attr4()) >= 1; in BOOST_AUTO_TEST_CASE()
74 f = expr::attr< int >(data::attr4()) < 1; in BOOST_AUTO_TEST_CASE()
77 f = expr::attr< logging::numeric_types >(data::attr2()) > 5; in BOOST_AUTO_TEST_CASE()
80 f = expr::attr< std::string >(data::attr3()) == "Hello, world!"; in BOOST_AUTO_TEST_CASE()
83 f = expr::attr< std::string >(data::attr3()) > "AAA"; in BOOST_AUTO_TEST_CASE()
107 filter f = expr::is_in_range(expr::attr< int >(data::attr1()), 5, 20); in BOOST_AUTO_TEST_CASE()
110 f = expr::is_in_range(expr::attr< int >(data::attr1()), 5, 10); in BOOST_AUTO_TEST_CASE()
113 f = expr::is_in_range(expr::attr< int >(data::attr1()), 10, 20); in BOOST_AUTO_TEST_CASE()
116 f = expr::is_in_range(expr::attr< logging::numeric_types >(data::attr2()), 5, 6); in BOOST_AUTO_TEST_CASE()
119 f = expr::is_in_range(expr::attr< std::string >(data::attr3()), "AAA", "zzz"); in BOOST_AUTO_TEST_CASE()
127 f = expr::is_in_range(expr::attr< std::string >(data::attr3()), buf1, buf2); in BOOST_AUTO_TEST_CASE()
134 f = expr::is_in_range(expr::attr< std::string >(data::attr3()), in BOOST_AUTO_TEST_CASE()
190 …filter f = phoenix::bind(predicate(present_counter, predicate_result), expr::attr< int >(data::att… in BOOST_AUTO_TEST_CASE()
198 …f = phoenix::bind(predicate(present_counter, predicate_result), expr::attr< logging::numeric_types… in BOOST_AUTO_TEST_CASE()
202 …f = phoenix::bind(predicate(present_counter, predicate_result), expr::attr< int >(data::attr2()).o… in BOOST_AUTO_TEST_CASE()
204 … f = phoenix::bind(predicate(present_counter, predicate_result), expr::attr< int >(data::attr2())); in BOOST_AUTO_TEST_CASE()
208 …f = phoenix::bind(predicate(present_counter, predicate_result), expr::attr< int >(data::attr4()).o… in BOOST_AUTO_TEST_CASE()
210 … f = phoenix::bind(predicate(present_counter, predicate_result), expr::attr< int >(data::attr4())); in BOOST_AUTO_TEST_CASE()
235 filter f = expr::begins_with(expr::attr< std::string >(data::attr3()), "Hello"); in BOOST_AUTO_TEST_CASE()
238 f = expr::begins_with(expr::attr< std::string >(data::attr3()), "hello"); in BOOST_AUTO_TEST_CASE()
241 f = expr::begins_with(expr::attr< std::string >(data::attr3()).or_throw(), "Bye"); in BOOST_AUTO_TEST_CASE()
244 f = expr::begins_with(expr::attr< std::string >(data::attr3()).or_throw(), "world!"); in BOOST_AUTO_TEST_CASE()
247 f = expr::begins_with(expr::attr< std::string >(data::attr2()), "Hello"); in BOOST_AUTO_TEST_CASE()
250 f = expr::begins_with(expr::attr< std::string >(data::attr4()), "Hello"); in BOOST_AUTO_TEST_CASE()
274 filter f = expr::ends_with(expr::attr< std::string >(data::attr3()), "world!"); in BOOST_AUTO_TEST_CASE()
277 f = expr::ends_with(expr::attr< std::string >(data::attr3()), "World!"); in BOOST_AUTO_TEST_CASE()
280 f = expr::ends_with(expr::attr< std::string >(data::attr3()).or_throw(), "Bye"); in BOOST_AUTO_TEST_CASE()
283 f = expr::ends_with(expr::attr< std::string >(data::attr3()).or_throw(), "Hello"); in BOOST_AUTO_TEST_CASE()
286 f = expr::ends_with(expr::attr< std::string >(data::attr2()), "world!"); in BOOST_AUTO_TEST_CASE()
289 f = expr::ends_with(expr::attr< std::string >(data::attr4()), "world!"); in BOOST_AUTO_TEST_CASE()
313 filter f = expr::contains(expr::attr< std::string >(data::attr3()), "Hello"); in BOOST_AUTO_TEST_CASE()
316 f = expr::contains(expr::attr< std::string >(data::attr3()), "hello"); in BOOST_AUTO_TEST_CASE()
319 f = expr::contains(expr::attr< std::string >(data::attr3()).or_throw(), "o, w"); in BOOST_AUTO_TEST_CASE()
322 f = expr::contains(expr::attr< std::string >(data::attr3()).or_throw(), "world!"); in BOOST_AUTO_TEST_CASE()
325 f = expr::contains(expr::attr< std::string >(data::attr2()), "Hello"); in BOOST_AUTO_TEST_CASE()
328 f = expr::contains(expr::attr< std::string >(data::attr4()), "Hello"); in BOOST_AUTO_TEST_CASE()
353 filter f = expr::matches(expr::attr< std::string >(data::attr3()), rex); in BOOST_AUTO_TEST_CASE()
357 f = expr::matches(expr::attr< std::string >(data::attr3()).or_throw(), rex); in BOOST_AUTO_TEST_CASE()
361 f = expr::matches(expr::attr< std::string >(data::attr2()), rex); in BOOST_AUTO_TEST_CASE()
364 f = expr::matches(expr::attr< std::string >(data::attr4()), rex); in BOOST_AUTO_TEST_CASE()
392 expr::attr< int >(data::attr1()) <= 10 || in BOOST_AUTO_TEST_CASE()
393 expr::is_in_range(expr::attr< double >(data::attr2()), 2.2, 7.7); in BOOST_AUTO_TEST_CASE()
398 f = expr::attr< int >(data::attr1()) == 10 && in BOOST_AUTO_TEST_CASE()
399 expr::begins_with(expr::attr< std::string >(data::attr3()), "Hello"); in BOOST_AUTO_TEST_CASE()