HomeSort by relevance Sort by last modified time
    Searched refs:IsBlacklisted (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/chrome/browser/extensions/
blacklist_unittest.cc 29 bool IsBlacklisted(const Extension* extension) {
30 return TestBlacklist(&blacklist_).IsBlacklisted(extension->id());
58 EXPECT_FALSE(IsBlacklisted(extension_a.get()));
59 EXPECT_FALSE(IsBlacklisted(extension_b.get()));
60 EXPECT_TRUE(IsBlacklisted(extension_c.get()));
61 EXPECT_TRUE(IsBlacklisted(extension_d.get()));
70 EXPECT_FALSE(IsBlacklisted(extension_a.get()));
71 EXPECT_TRUE(IsBlacklisted(extension_b.get()));
72 EXPECT_TRUE(IsBlacklisted(extension_c.get()));
73 EXPECT_FALSE(IsBlacklisted(extension_d.get()))
    [all...]
test_blacklist.h 24 bool IsBlacklisted(const std::string& extension_id);
extension_blacklist_browsertest.cc 64 testing::AssertionResult IsBlacklisted(const Extension* extension) {
158 EXPECT_TRUE(IsBlacklisted(extension_a.get()));
159 EXPECT_TRUE(IsBlacklisted(extension_b.get()));
170 EXPECT_TRUE(IsBlacklisted(extension_b.get()));
179 EXPECT_TRUE(IsBlacklisted(extension_a.get()));
180 EXPECT_TRUE(IsBlacklisted(extension_b.get()));
189 EXPECT_TRUE(IsBlacklisted(extension_b.get()));
190 EXPECT_TRUE(IsBlacklisted(extension_c.get()));
199 EXPECT_TRUE(IsBlacklisted(extension_a.get()));
200 EXPECT_TRUE(IsBlacklisted(extension_b.get()))
    [all...]
test_blacklist.cc 28 bool TestBlacklist::IsBlacklisted(const std::string& extension_id) {
blacklist.h 80 void IsBlacklisted(const std::string& extension_id,
blacklist.cc 198 void Blacklist::IsBlacklisted(const std::string& extension_id,
  /external/chromium_org/net/cert/
cert_verify_proc.h 87 static bool IsBlacklisted(X509Certificate* cert);
cert_verify_proc.cc 194 if (IsBlacklisted(cert)) {
260 bool CertVerifyProc::IsBlacklisted(X509Certificate* cert) {
  /external/chromium_org/chrome/browser/history/
top_sites.h 123 virtual bool IsBlacklisted(const GURL& url) = 0;
top_sites_impl.h 80 virtual bool IsBlacklisted(const GURL& url) OVERRIDE;
top_sites_likely_impl.h 80 virtual bool IsBlacklisted(const GURL& url) OVERRIDE;
top_sites_impl_unittest.cc     [all...]
top_sites_likely_impl_unittest.cc     [all...]
  /external/chromium/chrome/browser/password_manager/
password_manager.cc 103 if (manager->IsBlacklisted())
137 DCHECK(!provisional_save_manager_->IsBlacklisted());
password_form_manager.h 59 bool IsBlacklisted();
password_form_manager.cc 97 bool PasswordFormManager::IsBlacklisted() {
  /external/chromium_org/chrome/browser/password_manager/
password_form_manager.h 75 bool IsBlacklisted();
password_manager.cc 188 if (manager->IsBlacklisted())
password_form_manager.cc 109 bool PasswordFormManager::IsBlacklisted() {
  /external/chromium/chrome/browser/history/
top_sites.h 115 bool IsBlacklisted(const GURL& url);
top_sites_unittest.cc     [all...]
top_sites.cc 373 bool TopSites::IsBlacklisted(const GURL& url) {
691 if (!IsBlacklisted(urls[i].url))
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
cros_language_options_handler.cc 39 bool IsBlacklisted(const std::string& language_code) {
245 if (IsBlacklisted(base_language_codes[i]))
  /external/chromium/net/base/
x509_certificate.h 398 // NOTE: keep this method private, used by IsBlacklisted only. To simplify
399 // IsBlacklisted, we strip the leading 0 byte of a serial number, used to
405 // IsBlacklisted returns true if this certificate is explicitly blacklisted.
406 bool IsBlacklisted() const;
  /external/chromium_org/
PRESUBMIT.py 365 def IsBlacklisted(affected_file, blacklist):
371 if IsBlacklisted(f, excluded_paths):
    [all...]

Completed in 608 milliseconds

1 2