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

Lines Matching refs:wregex

696         assert(!std::regex_match(L"a", m, std::wregex()));
703 assert(std::regex_match(s, m, std::wregex(L"a", std::regex_constants::basic)));
719 assert(std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::basic)));
734 assert(!std::regex_match(s, m, std::wregex(L"ba", std::regex_constants::basic)));
741 assert(!std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::basic)));
747 assert(!std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::basic),
754 assert(!std::regex_match(s, m, std::wregex(L"bc", std::regex_constants::basic)));
760 assert(std::regex_match(s, m, std::wregex(L"ab*c", std::regex_constants::basic)));
775 assert(std::regex_match(s, m, std::wregex(L"\\(ab\\)*c", std::regex_constants::basic)));
793 assert(!std::regex_match(s, m, std::wregex(L"cd\\(\\(e\\)fg\\)hi",
800 assert(std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::basic)));
815 assert(!std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::basic)));
821 assert(!std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::basic)));
827 assert(std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::basic)));
842 assert(!std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::basic)));
848 assert(!std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::basic)));
854 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::basic)));
869 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::basic)));
884 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::basic)));
899 assert(std::regex_match(s, m, std::wregex(L"\\(.*\\).*", std::regex_constants::basic)));
917 assert(!std::regex_match(s, m, std::wregex(L"\\(a*\\)*", std::regex_constants::basic)));
923 assert(!std::regex_match(s, m, std::wregex(L"ab\\{3,5\\}c", std::regex_constants::basic)));
929 assert(std::regex_match(s, m, std::wregex(L"ab\\{3,5\\}c", std::regex_constants::basic)));
944 assert(std::regex_match(s, m, std::wregex(L"ab\\{3,5\\}c", std::regex_constants::basic)));
959 assert(std::regex_match(s, m, std::wregex(L"ab\\{3,5\\}c", std::regex_constants::basic)));
974 assert(!std::regex_match(s, m, std::wregex(L"ab\\{3,5\\}c", std::regex_constants::basic)));
980 assert(!std::regex_match(s, m, std::wregex(L"ab\\{3,5\\}c", std::regex_constants::basic)));
986 assert(!std::regex_match(s, m, std::wregex(L"a.\\{3,5\\}c", std::regex_constants::basic)));
992 assert(std::regex_match(s, m, std::wregex(L"a.\\{3,5\\}c", std::regex_constants::basic)));
1007 assert(std::regex_match(s, m, std::wregex(L"a.\\{3,5\\}c", std::regex_constants::basic)));
1022 assert(std::regex_match(s, m, std::wregex(L"a.\\{3,5\\}c", std::regex_constants::basic)));
1037 assert(!std::regex_match(s, m, std::wregex(L"a.\\{3,5\\}c", std::regex_constants::basic)));
1043 assert(std::regex_match(s, m, std::wregex(L"-\\(.*\\),\\1-", std::regex_constants::basic)));
1061 assert(std::regex_match(s, m, std::wregex(L"^\\(ab*\\)*\\1$", std::regex_constants::basic)));
1079 assert(!std::regex_match(s, m, std::wregex(L"^\\(ab*\\)*\\1$", std::regex_constants::basic)));
1085 assert(std::regex_match(s, m, std::wregex(L"^\\(Ab*\\)*\\1$",
1104 assert(!std::regex_match(s, m, std::wregex(L"^\\(Ab*\\)*\\1$",
1111 assert(std::regex_match(s, m, std::wregex(L"^[a]$",
1127 assert(std::regex_match(s, m, std::wregex(L"^[ab]$",
1143 assert(std::regex_match(s, m, std::wregex(L"^[a-f]$",
1159 assert(!std::regex_match(s, m, std::wregex(L"^[a-f]$",
1166 assert(!std::regex_match(s, m, std::wregex(L"q[^u]",
1173 assert(!std::regex_match(s, m, std::wregex(L"q[^u]",
1180 assert(std::regex_match(s, m, std::wregex(L"A[[:lower:]]B",
1196 assert(!std::regex_match(s, m, std::wregex(L"A[[:lower:]]B",
1203 assert(std::regex_match(s, m, std::wregex(L"A[^[:lower:]]B",
1219 assert(!std::regex_match(s, m, std::wregex(L"A[^[:lower:]]B",
1226 assert(!std::regex_match(s, m, std::wregex(L"A[^[:lower:]0-9]B",
1233 assert(std::regex_match(s, m, std::wregex(L"A[^[:lower:]0-9]B",
1249 assert(std::regex_match(s, m, std::wregex(L"[a[.hyphen.]z]",
1265 assert(std::regex_match(s, m, std::wregex(L"[a[.hyphen.]z]",
1281 assert(!std::regex_match(s, m, std::wregex(L"[a[.hyphen.]z]",
1289 assert(std::regex_match(s, m, std::wregex(L"[a[=M=]z]",
1305 assert(std::regex_match(s, m, std::wregex(L"[a[.ch.]z]",
1322 assert(!std::regex_match(s, m, std::wregex(L"[a[=M=]z]",
1329 assert(!std::regex_match(s, m, std::wregex(L"[ace1-9]*",
1336 assert(!std::regex_match(s, m, std::wregex(L"[ace1-9]\\{1,\\}",
1345 std::wregex regex(FI(r), FI(r+sr), std::regex_constants::basic);