Searched refs:RE2 (Results 51 - 75 of 83) sorted by relevance

1234

/external/chromium_org/gpu/config/
H A Dgpu_info_collector_win.cc488 if (RE2::FullMatch(gpu_info->gl_renderer,
490 RE2::PartialMatch(gpu_info->gl_renderer,
493 RE2::PartialMatch(gpu_info->gl_renderer,
497 RE2::PartialMatch(gpu_info->gl_renderer,
517 RE2::PartialMatch(egl_vendor,
519 RE2::Hex(&gpu_info->adapter_luid));
649 bool parsed = RE2::PartialMatch(
/external/chromium_org/third_party/re2/re2/testing/
H A Dtester.cc1 // Copyright 2008 The RE2 Authors. All Rights Reserved.
36 "RE2",
215 // Create re string that will be used for RE and RE2.
226 // Compile regexp to RE2.
228 RE2::Options options;
230 options.set_encoding(RE2::Options::EncodingLatin1);
233 re2_ = new RE2(re, options);
235 LOG(INFO) << "Cannot RE2: " << CEscape(re);
385 RE2::Anchor re_anchor;
387 re_anchor = RE2
[all...]
H A Dfiltered_re2_test.cc1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
17 RE2::Options opts;
/external/regex-re2/re2/testing/
H A Dtester.cc1 // Copyright 2008 The RE2 Authors. All Rights Reserved.
36 "RE2",
215 // Create re string that will be used for RE and RE2.
226 // Compile regexp to RE2.
228 RE2::Options options;
230 options.set_encoding(RE2::Options::EncodingLatin1);
233 re2_ = new RE2(re, options);
235 LOG(INFO) << "Cannot RE2: " << CEscape(re);
385 RE2::Anchor re_anchor;
387 re_anchor = RE2
[all...]
H A Dfiltered_re2_test.cc1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
17 RE2::Options opts;
/external/chromium_org/components/policy/core/common/
H A Dschema.cc182 re2::RE2* CompileRegex(const std::string& pattern) const;
250 mutable std::map<std::string, re2::RE2*> regex_cache_;
251 STLValueDeleter<std::map<std::string, re2::RE2*> > regex_cache_deleter_;
343 re2::RE2* Schema::InternalStorage::CompileRegex(
345 std::map<std::string, re2::RE2*>::iterator it = regex_cache_.find(pattern);
347 re2::RE2* compiled = new re2::RE2(pattern);
560 re2::RE2* compiled_regex = CompileRegex(it.key());
680 re2::RE2* compiled_regex = CompileRegex(pattern);
1031 if (re2::RE2
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddownload_query.cc206 RE2* pattern,
209 return RE2::PartialMatch(accessor.Run(item), *pattern);
218 scoped_ptr<RE2> pattern(new RE2(regex_str));
/external/chromium_org/third_party/re2/benchlog/
H A Dmktable8 <tr><th>System</th><th>PCRE</th><th>RE2</th></tr>
12 my $ns_re2 = $data{$sys}->{sprintf($name, "RE2")}->{'ns/op'};
29 "RE2" => "0 0 1",
46 foreach my $who ("PCRE", "RE2") {
78 foreach my $who ("PCRE", "RE2") {
/external/regex-re2/benchlog/
H A Dmktable8 <tr><th>System</th><th>PCRE</th><th>RE2</th></tr>
12 my $ns_re2 = $data{$sys}->{sprintf($name, "RE2")}->{'ns/op'};
29 "RE2" => "0 0 1",
46 foreach my $who ("PCRE", "RE2") {
78 foreach my $who ("PCRE", "RE2") {
/external/chromium_org/components/plugins/renderer/
H A Dplugin_placeholder.cc146 if (RE2::PartialMatch(style_str, width_str) &&
147 RE2::PartialMatch(style_str, height_str))
/external/chromium_org/third_party/re2/doc/
H A Dmksyntaxgo22 // DO NOT EDIT. This file is generated by mksyntaxgo from the RE2 distribution.
/external/chromium_org/third_party/re2/re2/
H A Dprog.h1 // Copyright 2007 The RE2 Authors. All Rights Reserved.
334 static Prog* CompileSet(const RE2::Options& options, RE2::Anchor anchor,
/external/regex-re2/doc/
H A Dmksyntaxgo22 // DO NOT EDIT. This file is generated by mksyntaxgo from the RE2 distribution.
/external/regex-re2/re2/
H A Dprog.h1 // Copyright 2007 The RE2 Authors. All Rights Reserved.
334 static Prog* CompileSet(const RE2::Options& options, RE2::Anchor anchor,
/external/chromium_org/extensions/browser/api/declarative_webrequest/
H A Dwebrequest_action.h44 class RE2;
261 // The |to_pattern| has to be passed in RE2 syntax with the exception that
263 explicit WebRequestRedirectByRegExAction(scoped_ptr<re2::RE2> from_pattern,
267 // RE2 (\1, \2, ...).
281 scoped_ptr<re2::RE2> from_pattern_;
H A Dwebrequest_action.cc153 RE2::Options options;
155 scoped_ptr<RE2> from_pattern(new RE2(from, options));
695 scoped_ptr<RE2> from_pattern,
717 // RE2, derived from RE2::Rewrite()
782 if (!RE2::Replace(&new_url, *from_pattern_, to_pattern_) ||
/external/chromium_org/third_party/re2/util/
H A Dbenchmark.cc1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
139 if(RE2::PartialMatch(name, argv[i]))
/external/regex-re2/util/
H A Dbenchmark.cc1 // Copyright 2009 The RE2 Authors. All Rights Reserved.
139 if(RE2::PartialMatch(name, argv[i]))
/external/chromium_org/components/json_schema/
H A Djson_schema_validator.cc608 ScopedVector<re2::RE2> pattern_properties_pattern;
614 re2::RE2* prop_pattern = new re2::RE2(it.key());
638 if (re2::RE2::PartialMatch(it.key(),
774 re2::RE2 compiled_regex(pattern);
781 } else if (!re2::RE2::PartialMatch(value, compiled_regex)) {
/external/chromium_org/chrome/browser/password_manager/
H A Dchrome_password_manager_client.cc494 CR_DEFINE_STATIC_LOCAL(RE2, account_dashboard_pattern,
497 return RE2::FullMatch(GURL(param_value).host(), account_dashboard_pattern);
/external/chromium_org/chrome/browser/ui/webui/extensions/
H A Dextension_loader_handler.cc251 re2::RE2::FullMatch(error, regex, &line, &column);
/external/chromium_org/components/url_matcher/
H A Durl_matcher_factory.cc206 re2::RE2 regex(str_value);
/external/chromium_org/content/child/webcrypto/test/
H A Dtest_helpers.cc176 re2::RE2::GlobalReplace(&file_contents, re2::RE2("\\s*//.*"), "");
/external/chromium_org/third_party/re2/
H A DMakefile1 # Copyright 2009 The RE2 Authors. All Rights Reserved.
266 ./obj/test/regexp_benchmark 'PCRE|RE2') | tee -a benchlog.$$(hostname | sed 's/\..*//')
278 echo '#' RE2 exhaustive tests built by make log >re2-exhaustive.txt
286 echo '#' RE2 basic search tests built by make $@ >re2-search.txt
/external/regex-re2/
H A DMakefile1 # Copyright 2009 The RE2 Authors. All Rights Reserved.
266 ./obj/test/regexp_benchmark 'PCRE|RE2') | tee -a benchlog.$$(hostname | sed 's/\..*//')
278 echo '#' RE2 exhaustive tests built by make log >re2-exhaustive.txt
286 echo '#' RE2 basic search tests built by make $@ >re2-search.txt

Completed in 1824 milliseconds

1234