Lines Matching refs:regex
10 // <regex>
20 #include <regex>
33 assert(std::regex_match(s, m, std::regex("a", std::regex_constants::awk)));
49 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::awk)));
64 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::awk)));
71 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::awk)));
77 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::awk),
84 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::awk)));
90 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::awk)));
105 assert(std::regex_match(s, m, std::regex("(ab)*c", std::regex_constants::awk)));
123 assert(!std::regex_match(s, m, std::regex("cd((e)fg)hi",
130 assert(std::regex_match(s, m, std::regex("^abc", std::regex_constants::awk)));
145 assert(!std::regex_match(s, m, std::regex("^abc", std::regex_constants::awk)));
151 assert(!std::regex_match(s, m, std::regex("^abc", std::regex_constants::awk)));
157 assert(std::regex_match(s, m, std::regex("abc$", std::regex_constants::awk)));
172 assert(!std::regex_match(s, m, std::regex("abc$", std::regex_constants::awk)));
178 assert(!std::regex_match(s, m, std::regex("abc$", std::regex_constants::awk)));
184 assert(std::regex_match(s, m, std::regex("a.c", std::regex_constants::awk)));
199 assert(std::regex_match(s, m, std::regex("a.c", std::regex_constants::awk)));
214 assert(std::regex_match(s, m, std::regex("a.c", std::regex_constants::awk)));
229 assert(std::regex_match(s, m, std::regex("(.*).*", std::regex_constants::awk)));
247 assert(!std::regex_match(s, m, std::regex("(a*)*", std::regex_constants::awk)));
253 assert(!std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::awk)));
259 assert(std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::awk)));
274 assert(std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::awk)));
289 assert(std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::awk)));
304 assert(!std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::awk)));
310 assert(!std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::awk)));
316 assert(!std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::awk)));
322 assert(std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::awk)));
337 assert(std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::awk)));
352 assert(std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::awk)));
367 assert(!std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::awk)));
373 assert(std::regex_match(s, m, std::regex("tour|to|tournament",
389 assert(std::regex_match(s, m, std::regex("(tour|to|tournament)+",
405 assert(std::regex_match(s, m, std::regex("(tour|to|t)+",
424 assert(!std::regex_match(s, m, std::regex("-(.*),\1-", std::regex_constants::awk)));
430 assert(std::regex_match(s, m, std::regex("-.*,.*-", std::regex_constants::awk)));
445 assert(std::regex_match(s, m, std::regex("^[a]$",
461 assert(std::regex_match(s, m, std::regex("^[ab]$",
477 assert(std::regex_match(s, m, std::regex("^[a-f]$",
493 assert(!std::regex_match(s, m, std::regex("^[a-f]$",
500 assert(!std::regex_match(s, m, std::regex("q[^u]",
507 assert(!std::regex_match(s, m, std::regex("q[^u]",
514 assert(std::regex_match(s, m, std::regex("A[[:lower:]]B",
530 assert(!std::regex_match(s, m, std::regex("A[[:lower:]]B",
537 assert(std::regex_match(s, m, std::regex("A[^[:lower:]]B",
553 assert(!std::regex_match(s, m, std::regex("A[^[:lower:]]B",
560 assert(!std::regex_match(s, m, std::regex("A[^[:lower:]0-9]B",
567 assert(std::regex_match(s, m, std::regex("A[^[:lower:]0-9]B",
583 assert(std::regex_match(s, m, std::regex("[a[.hyphen.]z]",
599 assert(std::regex_match(s, m, std::regex("[a[.hyphen.]z]",
615 assert(!std::regex_match(s, m, std::regex("[a[.hyphen.]z]",
624 std::regex("[a[=M=]z]", std::regex_constants::awk)));
639 assert(std::regex_match(s, m, std::regex("[a[.ch.]z]",
656 assert(!std::regex_match(s, m, std::regex("[a[=M=]z]",
663 assert(!std::regex_match(s, m, std::regex("[ace1-9]*",
670 assert(!std::regex_match(s, m, std::regex("[ace1-9]+",
679 std::regex regex(FI(r), FI(r+sr), std::regex_constants::awk);
683 assert(std::regex_match(BI(s), BI(s+ss), m, regex));
698 assert(std::regex_match(s, m, std::regex("[\\n]+",
1360 std::wregex regex(FI(r), FI(r+sr), std::regex_constants::awk);
1364 assert(std::regex_match(BI(s), BI(s+ss), m, regex));