Home | History | Annotate | Download | only in re.regex.construct

Lines Matching refs:end

41     test(F(s1.begin()), F(s1.end()), std::regex_constants::basic, 1);
42 test(F(s2.begin()), F(s2.end()), std::regex_constants::basic, 1);
43 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2);
44 test(F(s4.begin()), F(s4.end()), std::regex_constants::basic, 0);
46 test(F(s1.begin()), F(s1.end()), std::regex_constants::extended, 0);
47 test(F(s2.begin()), F(s2.end()), std::regex_constants::extended, 0);
48 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0);
49 test(F(s4.begin()), F(s4.end()), std::regex_constants::extended, 2);
51 test(F(s1.begin()), F(s1.end()), std::regex_constants::ECMAScript, 0);
52 test(F(s2.begin()), F(s2.end()), std::regex_constants::ECMAScript, 0);
53 test(F(s3.begin()), F(s3.end()), std::regex_constants::ECMAScript, 0);
54 test(F(s4.begin()), F(s4.end()), std::regex_constants::ECMAScript, 2);
56 test(F(s1.begin()), F(s1.end()), std::regex_constants::awk, 0);
57 test(F(s2.begin()), F(s2.end()), std::regex_constants::awk, 0);
58 test(F(s3.begin()), F(s3.end()), std::regex_constants::awk, 0);
59 test(F(s4.begin()), F(s4.end()), std::regex_constants::awk, 2);
61 test(F(s1.begin()), F(s1.end()), std::regex_constants::grep, 1);
62 test(F(s2.begin()), F(s2.end()), std::regex_constants::grep, 1);
63 test(F(s3.begin()), F(s3.end()), std::regex_constants::grep, 2);
64 test(F(s4.begin()), F(s4.end()), std::regex_constants::grep, 0);
66 test(F(s1.begin()), F(s1.end()), std::regex_constants::egrep, 0);
67 test(F(s2.begin()), F(s2.end()), std::regex_constants::egrep, 0);
68 test(F(s3.begin()), F(s3.end()), std::regex_constants::egrep, 0);
69 test(F(s4.begin()), F(s4.end()), std::regex_constants::egrep, 2);