Lines Matching full:extended

28         assert(std::regex_match(s, m, std::regex("a", std::regex_constants::extended)));  in main()
44 assert(std::regex_match(s, m, std::regex("ab", std::regex_constants::extended))); in main()
59 assert(!std::regex_match(s, m, std::regex("ba", std::regex_constants::extended))); in main()
66 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::extended))); in main()
72 assert(!std::regex_match(s, m, std::regex("ab", std::regex_constants::extended), in main()
79 assert(!std::regex_match(s, m, std::regex("bc", std::regex_constants::extended))); in main()
85 assert(std::regex_match(s, m, std::regex("ab*c", std::regex_constants::extended))); in main()
100 assert(std::regex_match(s, m, std::regex("(ab)*c", std::regex_constants::extended))); in main()
119 std::regex_constants::extended))); in main()
125 assert(std::regex_match(s, m, std::regex("^abc", std::regex_constants::extended))); in main()
140 assert(!std::regex_match(s, m, std::regex("^abc", std::regex_constants::extended))); in main()
146 assert(!std::regex_match(s, m, std::regex("^abc", std::regex_constants::extended))); in main()
152 assert(std::regex_match(s, m, std::regex("abc$", std::regex_constants::extended))); in main()
167 assert(!std::regex_match(s, m, std::regex("abc$", std::regex_constants::extended))); in main()
173 assert(!std::regex_match(s, m, std::regex("abc$", std::regex_constants::extended))); in main()
179 assert(std::regex_match(s, m, std::regex("a.c", std::regex_constants::extended))); in main()
194 assert(std::regex_match(s, m, std::regex("a.c", std::regex_constants::extended))); in main()
209 assert(std::regex_match(s, m, std::regex("a.c", std::regex_constants::extended))); in main()
224 assert(std::regex_match(s, m, std::regex("(.*).*", std::regex_constants::extended))); in main()
242 assert(!std::regex_match(s, m, std::regex("(a*)*", std::regex_constants::extended))); in main()
248 assert(!std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::extended))); in main()
254 assert(std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::extended))); in main()
269 assert(std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::extended))); in main()
284 assert(std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::extended))); in main()
299 assert(!std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::extended))); in main()
305 assert(!std::regex_match(s, m, std::regex("ab{3,5}c", std::regex_constants::extended))); in main()
311 assert(!std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::extended))); in main()
317 assert(std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::extended))); in main()
332 assert(std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::extended))); in main()
347 assert(std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::extended))); in main()
362 assert(!std::regex_match(s, m, std::regex("a.{3,5}c", std::regex_constants::extended))); in main()
369 std::regex_constants::extended))); in main()
385 std::regex_constants::extended | std::regex_constants::nosubs))); in main()
401 std::regex_constants::extended))); in main()
419 assert(!std::regex_match(s, m, std::regex("-(.*),\1-", std::regex_constants::extended))); in main()
425 assert(std::regex_match(s, m, std::regex("-(.*),\\1-", std::regex_constants::extended))); in main()
443 assert(std::regex_match(s, m, std::regex("-.*,.*-", std::regex_constants::extended))); in main()
459 std::regex_constants::extended))); in main()
475 std::regex_constants::extended))); in main()
491 std::regex_constants::extended))); in main()
507 std::regex_constants::extended))); in main()
514 std::regex_constants::extended))); in main()
521 std::regex_constants::extended))); in main()
528 std::regex_constants::extended))); in main()
544 std::regex_constants::extended))); in main()
551 std::regex_constants::extended))); in main()
567 std::regex_constants::extended))); in main()
574 std::regex_constants::extended))); in main()
581 std::regex_constants::extended))); in main()
597 std::regex_constants::extended))); in main()
613 std::regex_constants::extended))); in main()
629 std::regex_constants::extended))); in main()
636 std::regex_constants::extended))); in main()
643 std::regex_constants::extended))); in main()
651 std::regex regex(FI(r), FI(r+sr), std::regex_constants::extended); in main()
672 assert(std::regex_match(s, m, std::wregex(L"a", std::regex_constants::extended))); in main()
688 assert(std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::extended))); in main()
703 assert(!std::regex_match(s, m, std::wregex(L"ba", std::regex_constants::extended))); in main()
710 assert(!std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::extended))); in main()
716 assert(!std::regex_match(s, m, std::wregex(L"ab", std::regex_constants::extended), in main()
723 assert(!std::regex_match(s, m, std::wregex(L"bc", std::regex_constants::extended))); in main()
729 assert(std::regex_match(s, m, std::wregex(L"ab*c", std::regex_constants::extended))); in main()
744 assert(std::regex_match(s, m, std::wregex(L"(ab)*c", std::regex_constants::extended))); in main()
763 std::regex_constants::extended))); in main()
769 assert(std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::extended))); in main()
784 assert(!std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::extended))); in main()
790 assert(!std::regex_match(s, m, std::wregex(L"^abc", std::regex_constants::extended))); in main()
796 assert(std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::extended))); in main()
811 assert(!std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::extended))); in main()
817 assert(!std::regex_match(s, m, std::wregex(L"abc$", std::regex_constants::extended))); in main()
823 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::extended))); in main()
838 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::extended))); in main()
853 assert(std::regex_match(s, m, std::wregex(L"a.c", std::regex_constants::extended))); in main()
868 assert(std::regex_match(s, m, std::wregex(L"(.*).*", std::regex_constants::extended))); in main()
886 assert(!std::regex_match(s, m, std::wregex(L"(a*)*", std::regex_constants::extended))); in main()
892 assert(!std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::extended))); in main()
898 assert(std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::extended))); in main()
913 assert(std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::extended))); in main()
928 assert(std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::extended))); in main()
943 assert(!std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::extended))); in main()
949 assert(!std::regex_match(s, m, std::wregex(L"ab{3,5}c", std::regex_constants::extended))); in main()
955 assert(!std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::extended))); in main()
961 assert(std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::extended))); in main()
976 assert(std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::extended))); in main()
991 assert(std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::extended))); in main()
1006 assert(!std::regex_match(s, m, std::wregex(L"a.{3,5}c", std::regex_constants::extended))); in main()
1013 std::regex_constants::extended))); in main()
1029 std::regex_constants::extended | std::regex_constants::nosubs))); in main()
1045 std::regex_constants::extended))); in main()
1063 assert(!std::regex_match(s, m, std::wregex(L"-(.*),\1-", std::regex_constants::extended))); in main()
1069 assert(std::regex_match(s, m, std::wregex(L"-(.*),\\1-", std::regex_constants::extended))); in main()
1087 assert(std::regex_match(s, m, std::wregex(L"-.*,.*-", std::regex_constants::extended))); in main()
1103 std::regex_constants::extended))); in main()
1119 std::regex_constants::extended))); in main()
1135 std::regex_constants::extended))); in main()
1151 std::regex_constants::extended))); in main()
1158 std::regex_constants::extended))); in main()
1165 std::regex_constants::extended))); in main()
1172 std::regex_constants::extended))); in main()
1188 std::regex_constants::extended))); in main()
1195 std::regex_constants::extended))); in main()
1211 std::regex_constants::extended))); in main()
1218 std::regex_constants::extended))); in main()
1225 std::regex_constants::extended))); in main()
1241 std::regex_constants::extended))); in main()
1257 std::regex_constants::extended))); in main()
1273 std::regex_constants::extended))); in main()
1280 std::regex_constants::extended))); in main()
1287 std::regex_constants::extended))); in main()
1295 std::wregex regex(FI(r), FI(r+sr), std::regex_constants::extended); in main()