Lines Matching refs:match_regex
41 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
51 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
62 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
74 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
87 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
99 const text::regex_matches matches = text::match_regex( in ATF_TEST_CASE_BODY()
140 ATF_REQUIRE(!text::match_regex("foo", "bar Foo bar", 0, false)); in ATF_TEST_CASE_BODY()
141 ATF_REQUIRE(!text::match_regex("foo", "bar foO bar", 0, false)); in ATF_TEST_CASE_BODY()
142 ATF_REQUIRE(!text::match_regex("foo", "bar FOO bar", 0, false)); in ATF_TEST_CASE_BODY()
150 ATF_REQUIRE( text::match_regex("foo", "bar foo bar", 0, true)); in ATF_TEST_CASE_BODY()
151 ATF_REQUIRE( text::match_regex("foo", "bar Foo bar", 0, true)); in ATF_TEST_CASE_BODY()
152 ATF_REQUIRE( text::match_regex("foo", "bar foO bar", 0, true)); in ATF_TEST_CASE_BODY()
153 ATF_REQUIRE( text::match_regex("foo", "bar FOO bar", 0, true)); in ATF_TEST_CASE_BODY()