Home | History | Annotate | Download | only in re.alg.match

Lines Matching refs:wregex

711         assert(std::regex_match(s, m, std::wregex(L"a", std::regex_constants::awk)));
727 assert(std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::awk)));
742 assert(!std::regex_match(s, m, std::wregex(L"ba", std::regex_constants::awk)));
749 assert(!std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::awk)));
755 assert(!std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::awk),
762 assert(!std::regex_match(s, m, std::wregex(L"bc", std::regex_constants::awk)));
768 assert(std::regex_match(s, m, std::wregex(L"ab*c", std::regex_constants::awk)));
783 assert(std::regex_match(s, m, std::wregex(L"(ab)*c", std::regex_constants::awk)));
801 assert(!std::regex_match(s, m, std::wregex(L"cd((e)fg)hi",
808 assert(std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::awk)));
823 assert(!std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::awk)));
829 assert(!std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::awk)));
835 assert(std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::awk)));
850 assert(!std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::awk)));
856 assert(!std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::awk)));
862 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::awk)));
877 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::awk)));
892 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::awk)));
907 assert(std::regex_match(s, m, std::wregex(L"(.*).*", std::regex_constants::awk)));
925 assert(!std::regex_match(s, m, std::wregex(L"(a*)*", std::regex_constants::awk)));
931 assert(!std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::awk)));
937 assert(std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::awk)));
952 assert(std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::awk)));
967 assert(std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::awk)));
982 assert(!std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::awk)));
988 assert(!std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::awk)));
994 assert(!std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::awk)));
1000 assert(std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::awk)));
1015 assert(std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::awk)));
1030 assert(std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::awk)));
1045 assert(!std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::awk)));
1051 assert(std::regex_match(s, m, std::wregex(L"tour|to|tournament",
1067 assert(std::regex_match(s, m, std::wregex(L"(tour|to|tournament)+",
1083 assert(std::regex_match(s, m, std::wregex(L"(tour|to|t)+",
1102 assert(!std::regex_match(s, m, std::wregex(L"-(.*),\1-", std::regex_constants::awk)));
1108 assert(std::regex_match(s, m, std::wregex(L"-.*,.*-", std::regex_constants::awk)));
1123 assert(std::regex_match(s, m, std::wregex(L"^[a]$",
1139 assert(std::regex_match(s, m, std::wregex(L"^[ab]$",
1155 assert(std::regex_match(s, m, std::wregex(L"^[a-f]$",
1171 assert(!std::regex_match(s, m, std::wregex(L"^[a-f]$",
1178 assert(!std::regex_match(s, m, std::wregex(L"q[^u]",
1185 assert(!std::regex_match(s, m, std::wregex(L"q[^u]",
1192 assert(std::regex_match(s, m, std::wregex(L"A[[:lower:]]B",
1208 assert(!std::regex_match(s, m, std::wregex(L"A[[:lower:]]B",
1215 assert(std::regex_match(s, m, std::wregex(L"A[^[:lower:]]B",
1231 assert(!std::regex_match(s, m, std::wregex(L"A[^[:lower:]]B",
1238 assert(!std::regex_match(s, m, std::wregex(L"A[^[:lower:]0-9]B",
1245 assert(std::regex_match(s, m, std::wregex(L"A[^[:lower:]0-9]B",
1261 assert(std::regex_match(s, m, std::wregex(L"[a[.hyphen.]z]",
1277 assert(std::regex_match(s, m, std::wregex(L"[a[.hyphen.]z]",
1293 assert(!std::regex_match(s, m, std::wregex(L"[a[.hyphen.]z]",
1301 assert(std::regex_match(s, m, std::wregex(L"[a[=M=]z]",
1317 assert(std::regex_match(s, m, std::wregex(L"[a[.ch.]z]",
1334 assert(!std::regex_match(s, m, std::wregex(L"[a[=M=]z]",
1341 assert(!std::regex_match(s, m, std::wregex(L"[ace1-9]*",
1348 assert(!std::regex_match(s, m, std::wregex(L"[ace1-9]+",
1357 std::wregex regex(FI(r), FI(r+sr), std::regex_constants::awk);
1376 assert(std::regex_match(s, m, std::wregex(L"[\\n]+",