HomeSort by relevance Sort by last modified time
    Searched refs:GlobalReplace (Results 1 - 8 of 8) sorted by null

  /external/pcre/pcrecpp/include/
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,
  /external/pcre/pcrecpp/
pcrecpp_unittest.cc 343 const int replace_count = re.GlobalReplace(t->rewrite, &all);
354 CHECK_EQ(re.GlobalReplace("bb", &all), 9);
362 CHECK_EQ(re.GlobalReplace("bb", &all), 9);
    [all...]
pcrecpp.cc 184 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...]

Completed in 1144 milliseconds