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

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter.h 94 inline bool FindAndConsume(RegExpInput* input_string,
regexp_adapter_re2.cc 115 return DispatchRE2Call(RE2::FindAndConsume, utf8_input, utf8_regexp_,
phonenumbermatcher.cc 531 if (reg_exps_->group_separator_->FindAndConsume(candidate_input.get(),
555 while (reg_exps_->group_separator_->FindAndConsume(candidate_input.get(),
642 reg_exps_->pattern_->FindAndConsume(text.get(), &candidate)) {
786 while (reg_exps_->capturing_ascii_digits_pattern_->FindAndConsume(
    [all...]
phonenumberutil.cc     [all...]
  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 274 TEST(RE2, FindAndConsume) {
283 CHECK(RE2::FindAndConsume(&input, r, &word));
285 CHECK(RE2::FindAndConsume(&input, r, &word));
287 CHECK(RE2::FindAndConsume(&input, r, &word));
289 CHECK(! RE2::FindAndConsume(&input, r, &word));
291 // Check that FindAndConsume works without any submatches.
295 CHECK(RE2::FindAndConsume(&input, "aaa"));
    [all...]
regexp_benchmark.cc 265 // Benchmark: FindAndConsume
266 void FindAndConsume(int iters, int nbytes) {
276 CHECK(RE2::FindAndConsume(&t, re, &u));
282 BENCHMARK_RANGE(FindAndConsume, 8, 16<<20)->ThreadRange(1, NumCPUs());
    [all...]
  /external/chromium_org/extensions/browser/api/web_request/
form_data_parser.cc 417 while (RE2::FindAndConsume(&seek_unquote, unquote_pattern())) {
  /external/chromium_org/third_party/re2/re2/
re2.h 140 // The "FindAndConsume" operation is similar to "Consume" but does not
143 // RE2::FindAndConsume(&input, "(\\w+)", &word)
350 // "input". For example, "FindAndConsume(s, "(\\w+)", &word)" finds the next
355 bool, StringPiece*, const RE2&, Arg, RE2::FindAndConsumeN> FindAndConsume;
    [all...]
re2.cc 38 const VariadicFunction2<bool, StringPiece*, const RE2&, RE2::Arg, RE2::FindAndConsumeN> RE2::FindAndConsume = {};
    [all...]
  /external/chromium_org/third_party/re2/util/
pcre.h 140 // The "FindAndConsume" operation is similar to "Consume" but does not
143 // PCRE::FindAndConsume(&input, "(\\w+)", &word)
358 // "input". For example, "FindAndConsume(s, "(\\w+)", &word)" finds the next
380 static const FindAndConsumeFunctor FindAndConsume;
pcre.cc 51 const PCRE::FindAndConsumeFunctor PCRE::FindAndConsume = { };
    [all...]

Completed in 1643 milliseconds