Home | History | Annotate | Download | only in testing

Lines Matching refs:utf8_string

990   const char utf8_string[] = {
1005 CHECK(RE2::FullMatch(utf8_string, re_test1));
1007 CHECK(RE2::FullMatch(utf8_string, re_test2));
1013 CHECK(RE2::PartialMatch(utf8_string, re_test3, &s));
1016 CHECK(RE2::PartialMatch(utf8_string, re_test4, &s));
1020 RE2 re_test5(utf8_string, RE2::Latin1);
1021 CHECK(RE2::FullMatch(utf8_string, re_test5));
1022 RE2 re_test6(utf8_string);
1023 CHECK(RE2::FullMatch(utf8_string, re_test6));
1027 CHECK(!RE2::FullMatch(utf8_string, re_test7));
1029 CHECK(RE2::FullMatch(utf8_string, re_test8));