Home | History | Annotate | Download | only in pcrecpp

Lines Matching refs:utf8_string

1177     const unsigned char utf8_string[] = {
1192 CHECK(re_test1.FullMatch(utf8_string));
1194 CHECK(re_test2.FullMatch(utf8_string));
1200 CHECK(re_test3.PartialMatch(utf8_string, &ss));
1203 CHECK(re_test4.PartialMatch(utf8_string, &ss));
1207 RE re_test5(utf8_string);
1208 CHECK(re_test5.FullMatch(utf8_string));
1209 RE re_test6(utf8_string, pcrecpp::UTF8());
1210 CHECK(re_test6.FullMatch(utf8_string));
1214 CHECK(!re_test7.FullMatch(utf8_string));
1216 CHECK(re_test8.FullMatch(utf8_string));