Lines Matching refs:what
41 smatch what; in test2() local
43 BOOST_REQUIRE(regex_match(str, what, sentence)); in test2()
44 BOOST_REQUIRE(7 == what.nested_results().size()); in test2()
45 smatch::nested_results_type::const_iterator pword = what.nested_results().begin(); in test2()
53 BOOST_CHECK(pword == what.nested_results().end()); in test2()
97 smatch what = tmpwhat; in test3() local
98 BOOST_REQUIRE(3 == what.nested_results().size()); in test3()
100 msg = what.nested_results().begin(); in test3()
175 smatch what; in test4() local
179 BOOST_REQUIRE(regex_search(str, what, parentheses)); in test4()
180 BOOST_REQUIRE(1 == what.size()); in test4()
181 BOOST_CHECK("( a(b)c (c(e)f (g)h )i (j)6 )" == what[0]); in test4()
183 BOOST_REQUIRE(3 == what.nested_results().size()); in test4()
184 pwhat = what.nested_results().begin(); in test4()
230 smatch what; in test6() local
233 BOOST_REQUIRE(regex_search(str, what, expression)); in test6()
234 BOOST_CHECK("9*(10+3)" == what[0]); in test6()