/external/pcre/dist/ |
pcrecpp.h | 316 // GlobalReplace() is like Replace(), except that it replaces all 321 // pcrecpp::RE("b+").GlobalReplace("d", &s); 610 int GlobalReplace(const StringPiece& rewrite,
|
pcrecpp_unittest.cc | 342 const int replace_count = re.GlobalReplace(t->rewrite, &all); 352 CHECK_EQ(re.GlobalReplace("bb", &all), 9); 359 CHECK_EQ(re.GlobalReplace("bb", &all), 9); [all...] |
pcrecpp.cc | 381 int RE::GlobalReplace(const StringPiece& rewrite,
|
/external/regex-re2/re2/ |
re2.h | 378 // CHECK(RE2::GlobalReplace(&s, "b+", "d")); 383 // Because GlobalReplace only replaces non-overlapping matches, 387 static int GlobalReplace(string *str, [all...] |
re2.cc | 369 int RE2::GlobalReplace(string *str, [all...] |
/external/regex-re2/util/ |
pcre.h | 398 // CHECK(PCRE::GlobalReplace(&s, "b+", "d")); 403 static int GlobalReplace(string *str,
|
pcre.cc | 344 int PCRE::GlobalReplace(string *str, [all...] |
/external/regex-re2/re2/testing/ |
re2_test.cc | 182 CHECK_EQ(RE2::GlobalReplace(&all, t->regexp, t->rewrite), t->greplace_count) [all...] |